mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-22 00:21:08 -05:00
Use YAML block strip syntax (>-
) where possible
This commit is contained in:
parent
f1f014b445
commit
cf5ce177da
1 changed files with 2 additions and 3 deletions
|
@ -24,10 +24,9 @@ jobs:
|
|||
--tag $IMAGE
|
||||
- name: Log in to GHCR
|
||||
if: github.event_name != 'pull_request'
|
||||
run: |
|
||||
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
|
||||
run: docker push $IMAGE
|
||||
|
|
Loading…
Reference in a new issue