File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: build-website
22
33on :
44 push :
5- branches : [ main, web_site ]
5+ branches : [ main, web_site, 'releases/**' ]
66
77jobs :
88 publish :
Original file line number Diff line number Diff line change 5959# There are mutable operations from here on
6060
6161echo " Creating release branch"
62- git checkout -b " release_ $TARGET_VERSION "
62+ git checkout -b " releases/ $TARGET_VERSION "
6363
6464# Update the two version files and push them
6565echo " Updating version and tagging..."
@@ -73,7 +73,7 @@ VERSION = '$TARGET_VERSION'
7373EOF
7474
7575git commit -m " Updated version files to $TARGET_VERSION ." RELEASE src/psij/version.py
76- git push --set-upstream origin release_ $TARGET_VERSION
76+ git push --set-upstream origin releases/ $TARGET_VERSION
7777
7878git tag -a " $TARGET_VERSION " -m " Tagging $TARGET_VERSION "
7979git push origin --tags
@@ -83,7 +83,7 @@ python3 setup.py sdist
8383python3 setup.py bdist_wheel
8484
8585echo " Releasing PyPi package..."
86- twine upload dist/*
86+ # twine upload dist/*
8787
8888echo " Triggering web docs build..."
8989git commit --allow-empty -m " Trigger web build for $TARGET_VERSION "
You can’t perform that action at this time.
0 commit comments