Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 98fac9a

Browse files
committed
Fix twine upload
1 parent 5d357ee commit 98fac9a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ after_script:
4141

4242
deploy:
4343
- provider: script
44-
script: twine upload -u bambucha -p $PASSWORD dist/*
44+
script: twine upload -u bambucha -p $PASSWORD $TRAVIS_BUILD_DIR/dist/*
4545
on:
4646
tags: true
4747
branch: master

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 0.1.8 ({build})
22

33
environment:
4-
password:
4+
PASSWORD:
55
secure: KZdEfjKCVSUL334LJP/iPqWKfzhoIm43D4VZwJcEb0k=
66

77
matrix:
@@ -35,4 +35,4 @@ artifacts:
3535
- path: dist/*
3636

3737
on_success:
38-
- if %APPVEYOR_REPO_TAG%==true twine upload -u bambucha -p $env:password dist/*
38+
- if %APPVEYOR_REPO_TAG%==true twine upload -u bambucha -p %PASSWORD% dist/*

0 commit comments

Comments
 (0)