Skip to content

Commit

Permalink
build: [upgrade-makesystem-bot] Upgrade to v0.5.27.
Browse files Browse the repository at this point in the history
Automated change generated by the Upgrade Makesystem Bot.
  • Loading branch information
Tuxdude committed May 7, 2024
1 parent 6e682ea commit 684731f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bootstrap/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.26
0.5.27
16 changes: 13 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ on:

permissions:
contents: read
packages: write

env:
PLATFORMS: linux/amd64,linux/arm64/v8
Expand Down Expand Up @@ -101,6 +102,13 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build amd64 Docker image locally
uses: docker/build-push-action@v5
with:
Expand All @@ -115,7 +123,7 @@ jobs:
run: |
IMAGE_TAG=${{ env.DOCKERHUB_TEST_TAG }} make test
- name: Build docker images for all platforms (with registry push)
- name: Build docker images for all platforms (with registry pushes)
uses: docker/build-push-action@v5
if: >-
(
Expand All @@ -128,11 +136,13 @@ jobs:
context: .
platforms: ${{env.PLATFORMS}}
push: true
tags: ${{ env.DOCKERHUB_REPO_NAME }}:${{ env.DOCKERHUB_PUBLISH_TAG }}
tags: |
${{ env.DOCKERHUB_REPO_NAME }}:${{ env.DOCKERHUB_PUBLISH_TAG }}
${{ env.GHCR_REPO_NAME }}:${{ env.DOCKERHUB_PUBLISH_TAG }}
build-args: ${{ steps.docker_build_args.outputs.build_args }}
allow: ${{ steps.docker_entitlements.outputs.entitlements }}

- name: Build docker images for all platforms (no registry push)
- name: Build docker images for all platforms (no registry pushes)
uses: docker/build-push-action@v5
if: >-
(
Expand Down

0 comments on commit 684731f

Please sign in to comment.