Show registration modal only when unregistered #58
Workflow file for this run
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: Build » Container image | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| jobs: | |
| container-image-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Extract metadata (tags, labels) | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: ghcr.io/${{ github.repository }} | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| push: false # This is handled in another workflow! | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| outputs: type=docker,dest=${{ runner.temp }}/build.tar | |
| - name: Upload docker image to GHA artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ github.run_id }} | |
| path: ${{ runner.temp }}/build.tar |