Switch to runner based authentication

This commit is contained in:
Simon Beginn 2021-09-12 20:08:50 +02:00
parent 5109446ce5
commit d1db33f24b
No known key found for this signature in database
GPG Key ID: 033A4D4CE4E063D6
1 changed files with 5 additions and 2 deletions

View File

@ -12,6 +12,9 @@ on:
jobs: jobs:
bake: bake:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.3.4 uses: actions/checkout@v2.3.4
@ -30,8 +33,8 @@ jobs:
uses: docker/login-action@v1.10.0 uses: docker/login-action@v1.10.0
with: with:
registry: ghcr.io registry: ghcr.io
username: pykmsorgadmin username: ${{ github.actor }}
password: ${{ secrets.GHCR_PASSWORD }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Build - name: Build
uses: docker/build-push-action@v2 uses: docker/build-push-action@v2
with: with: