Skip to content

Commit 7f1bde1

Browse files
authored
ci: fix quoting in YAML
Because apparently `!` is special Signed-off-by: Milas Bowman <[email protected]>
1 parent cd2c35a commit 7f1bde1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828

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

3535
- name: Create GitHub release
3636
uses: ncipollo/release-action@v1
37-
if: ! inputs.dry-run
37+
if: '! inputs.dry-run'
3838
with:
3939
artifacts: "dist/*"
4040
generateReleaseNotes: true

0 commit comments

Comments
 (0)