Separate `docker login` and `docker push`
https://github.com/pypa/gh-action-pypi-publish/pull/230#discussion_r1578694138
This commit is contained in:
parent
e453f8c630
commit
0d8d5059c8
|
@ -22,9 +22,12 @@ jobs:
|
|||
--build-arg BUILDKIT_INLINE_CACHE=1 \
|
||||
--cache-from $IMAGE \
|
||||
--tag $IMAGE
|
||||
- name: Push Docker image to GHCR
|
||||
- name: Log in to GHCR
|
||||
if: github.event_name != 'pull_request'
|
||||
run: |
|
||||
echo ${{ secrets.GITHUB_TOKEN }} |
|
||||
docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
|
||||
- name: Push Docker image to GHCR
|
||||
if: github.event_name != 'pull_request'
|
||||
run: |
|
||||
docker push $IMAGE
|
||||
|
|
Loading…
Reference in New Issue