summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilas Bowman <milas.bowman@docker.com>2022-07-30 12:20:50 -0400
committerGitHub <noreply@github.com>2022-07-30 12:20:50 -0400
commit7f1bde162f8266800d336a97becc92aa92da13a9 (patch)
tree5e74fe74162868aa9adc6358a2c4357c3da26623
parentcd2c35a9b699522b282cc4f024efa5699df24896 (diff)
downloaddocker-py-7f1bde162f8266800d336a97becc92aa92da13a9.tar.gz
ci: fix quoting in YAML
Because apparently `!` is special Signed-off-by: Milas Bowman <milas.bowman@docker.com>
-rw-r--r--.github/workflows/release.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 50695b1..a4b2565 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -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