Skip to content

Commit

Permalink
fix: amd64 image not generated (#118)
Browse files Browse the repository at this point in the history
* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated

* fix: amd64 image not generated
  • Loading branch information
braghettos authored Dec 23, 2024
1 parent ec6e595 commit 5c91dd9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release-pullrequest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
platform: linux/amd64
runs-on: ${{ matrix.runner }}

permissions:
contents: read
packages: write

steps:
- name: Prepare
run: |
Expand All @@ -37,7 +41,7 @@ jobs:
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
Expand All @@ -49,5 +53,4 @@ jobs:
with:
platforms: ${{ matrix.platform }}
push: false
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
5 changes: 4 additions & 1 deletion .github/workflows/release-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
platform: linux/amd64
runs-on: ${{ matrix.runner }}

permissions:
contents: read
packages: write

steps:
- name: Prepare
run: |
Expand Down Expand Up @@ -50,7 +54,6 @@ jobs:
platforms: ${{ matrix.platform }}
push: true
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta.outputs.tags }}
outputs: type=image,"name=${{ env.GHCR_REPO }}",push-by-digest=true,name-canonical=true,push=true

- name: Export digest
Expand Down

0 comments on commit 5c91dd9

Please sign in to comment.