feat: new sign to identify private and pending status in the object browser results list #2508
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Docker build for every PR | |
| on: | |
| pull_request: | |
| jobs: | |
| build_pr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # - name: Set up QEMU | |
| # uses: docker/setup-qemu-action@v2 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Login to DockerHub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Build Docker image | |
| uses: docker/build-push-action@v4 | |
| with: | |
| context: . | |
| file: ./dockerfiles/Dockerfile | |
| tags: redturtletech/io-comune-base:develop | |
| pull: true | |
| push: false | |
| cache-from: type=registry,ref=redturtletech/io-comune-base:develop | |
| cache-to: type=inline | |
| # platforms: linux/amd64,linux/arm64 | |
| build-args: | | |
| ADDON_NAME=design-comuni-plone-theme | |
| ADDON_PATH=design-comuni-plone-theme | |
| VOLTO_VERSION=17.22.3 |