bump: version 1.9.0 → 1.9.1 #1
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 Release | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| packages: write | |
| steps: | |
| - name: Check out the code | |
| uses: actions/checkout@v7 | |
| - name: Configure Docker for multi-arch builds | |
| uses: docker/setup-qemu-action@v4 | |
| - name: Set up Docker buildx for multi-arch builds | |
| uses: docker/setup-buildx-action@v4 | |
| - name: Log in to the GitHub Container Registry | |
| uses: docker/login-action@v4 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build, tag, and push docker image to the GitHub Container Registry | |
| run: make push | |
| - run: | | |
| echo "Finished building and pushing containers for version ${{ github.ref_name }}." |