ci: fix quoting in YAML

Because apparently `!` is special

Signed-off-by: Milas Bowman <milas.bowman@docker.com>
This commit is contained in:
Milas Bowman 2022-07-30 12:20:50 -04:00 committed by GitHub
parent cd2c35a9b6
commit 7f1bde162f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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