Build and Push to SWR #3
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 and Push to SWR | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| build-and-push: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Set image variables | |
| run: | | |
| echo "SHORT_SHA=${GITHUB_SHA::7}" >> "$GITHUB_ENV" | |
| echo "SWR_IMG=${{ secrets.SWR_REGISTRY }}/${{ secrets.SWR_ORGANIZATION }}/mnemo-server" >> "$GITHUB_ENV" | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Log in to SWR | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ secrets.SWR_REGISTRY }} | |
| username: ${{ secrets.SWR_USERNAME }} | |
| password: ${{ secrets.SWR_PASSWORD }} | |
| - name: Build and push multi-arch image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| file: ./server/Dockerfile | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| tags: | | |
| ${{ env.SWR_IMG }}:${{ env.SHORT_SHA }} | |
| ${{ env.SWR_IMG }}:latest | |
| provenance: false | |
| sbom: false | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max |