File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 23
23
env :
24
24
PYPI_USERNAME : ${{ secrets.PYPI_USERNAME }}
25
25
PYPI_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
26
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
26
27
run : |
27
28
./scripts/publish
Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
- ## Unreleased
3
+ ## v1.9.0
4
4
5
5
### Feature
6
6
20
20
- windows error when removing folders (#67 )
21
21
- typos in docs
22
22
23
+ ### Docs
24
+ - tutorial for gitlab ci
25
+ - tutorial for github actions
26
+
23
27
## v1.8.0
24
28
25
29
### Feature
Original file line number Diff line number Diff line change 1
1
# Publish to pypi
2
2
poetry publish --build -u $PYPI_USERNAME -p $PYPI_PASSWORD
3
3
4
- [ -z "${INPUT_GITHUB_TOKEN }" ] && {
4
+ [ -z "${GITHUB_TOKEN }" ] && {
5
5
echo 'Missing input "github_token: ${{ secrets.GITHUB_TOKEN }}".';
6
6
exit 1;
7
7
};
8
8
9
- remote_repo="https://${GITHUB_ACTOR}:${INPUT_GITHUB_TOKEN }@github.com/commitizen.git"
9
+ remote_repo="https://${GITHUB_ACTOR}:${GITHUB_TOKEN }@github.com/commitizen.git"
10
10
11
11
# Publish docs
12
12
mkdocs gh-deploy --remote-name "${remote_repo}"
You can’t perform that action at this time.
0 commit comments