1
0
mirror of https://github.com/mikecao/umami.git synced 2021-05-17 18:46:32 +03:00

Merge pull request #589 from webknjaz/patch-1

Use `GITHUB_TOKEN` for publishing images to GHCR
This commit is contained in:
Mike Cao
2021-04-08 21:04:01 -07:00
committed by GitHub

View File

@@ -28,9 +28,9 @@ jobs:
.
- name: Docker login
env:
CR_PAT: ${{ secrets.CR_PAT }}
run: docker login -u $GITHUB_ACTOR -p $CR_PAT ghcr.io
run: >-
echo "${{ secrets.GITHUB_TOKEN }}"
| docker login -u "${{ github.actor }}" --password-stdin
- name: Push image to GitHub
run: |