Skip to content

Commit

Permalink
[ci] quote pypi password, bash not properly escaping it
Browse files Browse the repository at this point in the history
Signed-off-by: LER0ever <i@rongyi.io>
  • Loading branch information
LER0ever committed Feb 5, 2020
1 parent e17fe1e commit e6fb689
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
displayName: 'Install new wheel'
- script: |
maturin publish -u rongyi -p $(pypi.password)
maturin publish -u rongyi -p "$(pypi.password)"
displayName: "Upload to PyPi"
condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
displayName: 'Install new wheel'
- script: |
maturin publish -u rongyi -p $(pypi.password)
maturin publish -u rongyi -p "$(pypi.password)"
displayName: "Upload to PyPi"
condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))
Expand Down Expand Up @@ -157,6 +157,6 @@ jobs:
displayName: 'Install new wheel'
- script: |
maturin publish -u rongyi -p $(pypi.password) --interpreter python
maturin publish -u rongyi -p "$(pypi.password)" --interpreter python
displayName: "Upload to PyPi"
condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))

0 comments on commit e6fb689

Please sign in to comment.