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

View file

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