fix(ci): use correct token

This commit is contained in:
Łukasz Mierzwa
2020-11-19 15:06:40 +00:00
committed by Łukasz Mierzwa
parent c9fc3212d4
commit 2449208290

View File

@@ -661,9 +661,9 @@ jobs:
- name: Login to GitHub Container Registry
if: github.event_name != 'pull_request'
shell: bash
run: echo "${GITHUB_PKG_TOKEN}" | docker login ghcr.io -u prymitive --password-stdin
run: echo "${GH_PKG_TOKEN}" | docker login ghcr.io -u prymitive --password-stdin
env:
GITHUB_PKG_TOKEN: ${{ secrets.GITHUB_PKG_TOKEN }}
GH_PKG_TOKEN: ${{ secrets.GH_PKG_TOKEN }}
- name: Push Docker image to GitHub Container Registry
if: github.event_name != 'pull_request'