Skip to content

Commit

Permalink
ci: fix quoting in YAML
Browse files Browse the repository at this point in the history
Because apparently `!` is special

Signed-off-by: Milas Bowman <milas.bowman@docker.com>
  • Loading branch information
milas authored Jul 30, 2022
1 parent cd2c35a commit 7f1bde1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
if: ! inputs.dry-run
if: '! inputs.dry-run'
with:
password: ${{ secrets.PYPI_API_TOKEN }}

- name: Create GitHub release
uses: ncipollo/release-action@v1
if: ! inputs.dry-run
if: '! inputs.dry-run'
with:
artifacts: "dist/*"
generateReleaseNotes: true
Expand Down

0 comments on commit 7f1bde1

Please sign in to comment.