Build and Publish Container Image #75
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 Publish Container Image | |
| on: | |
| workflow_run: | |
| workflows: ["Build and Test"] | |
| types: | |
| - completed | |
| jobs: | |
| build-and-publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Check current branch | |
| if: github.ref != 'refs/heads/main' | |
| run: exit 0 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GHCR_AUTH_TOKEN }} | |
| - name: Build and push Docker image | |
| run: | | |
| docker buildx create --use | |
| docker buildx build --push -f Containerfile \ | |
| --platform linux/amd64,linux/arm64 \ | |
| -t ghcr.io/quixsi/core:latest \ | |
| . | |
| docker buildx stop | |
| - name: Clean up | |
| run: docker buildx rm |