Add permission to push packegs to ghcr

This commit is contained in:
KMKoushik
2024-06-25 09:11:07 +10:00
parent b23c025747
commit 26b70e0219

View File

@@ -15,6 +15,8 @@ jobs:
build_and_publish_platform_containers: build_and_publish_platform_containers:
name: Build and publish platform containers name: Build and publish platform containers
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
packages: write
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@@ -74,6 +76,8 @@ jobs:
create_and_publish_manifest: create_and_publish_manifest:
name: Create and publish manifest name: Create and publish manifest
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
packages: write
needs: build_and_publish_platform_containers needs: build_and_publish_platform_containers
steps: steps:
- name: Checkout - name: Checkout
@@ -92,7 +96,7 @@ jobs:
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ github.repository_owner }} username: ${{ github.repository_owner }}
password: ${{ secrets.GH_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Create and push DockerHub manifest - name: Create and push DockerHub manifest
run: | run: |