mirror of https://github.com/docker/docker-py.git
ci: fix quoting in YAML
Because apparently `!` is special Signed-off-by: Milas Bowman <milas.bowman@docker.com>
This commit is contained in:
parent
cd2c35a9b6
commit
7f1bde162f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue