We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 655c934 commit a93888cCopy full SHA for a93888c
.github/workflows/CD.yml
@@ -26,4 +26,13 @@ jobs:
26
if: steps.semantic-release.outputs.released == 'true'
27
run: |
28
python3 -m pip install twine
29
- python3 -m twine upload --repository pypi dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}
+ python3 -m twine upload --repository pypi dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}
30
+ - name: Merge master -> next
31
+ if: github.ref == 'ref/head/master'
32
+ uses: devmasx/merge-branch@master
33
+ with:
34
+ type: now
35
+ from_branch: master
36
+ target_branch: next
37
+ github_token: ${{ github.token }}
38
+
0 commit comments