mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
fix perm
This commit is contained in:
parent
8764bb5683
commit
6d77aa017b
1 changed files with 7 additions and 1 deletions
8
.github/workflows/ghrc-push-main.yml
vendored
8
.github/workflows/ghrc-push-main.yml
vendored
|
|
@ -1,4 +1,4 @@
|
|||
name: Publish docker image (latest)
|
||||
name: Publish docker image to ghcr (latest)
|
||||
|
||||
env:
|
||||
DOCKER_IMAGE: katanemo/archgw
|
||||
|
|
@ -47,6 +47,9 @@ jobs:
|
|||
# Build AMD64 image on GitHub's AMD64 runner
|
||||
build-amd64:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
|
|
@ -79,6 +82,9 @@ jobs:
|
|||
# Combine ARM64 and AMD64 images into a multi-arch manifest
|
||||
create-manifest:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
needs: [build-arm64, build-amd64] # Wait for both builds
|
||||
steps:
|
||||
- name: Log in to GitHub Container Registry
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue