File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7373 run : |
7474 git commit -am "chore(release): version bump"
7575 git push origin $RELEASE_BRANCH
76-
77- - name : Create Pull Request
78- env :
79- GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
80- run : |
81- VERSION="${{ steps.version_bump.outputs.version }}"
82-
83- gh pr create \
84- --base master \
85- --head $RELEASE_BRANCH \
86- --title "chore(release): v$VERSION" \
87- --body "## Release v$VERSION
88- Version bump and changelog updates.
89-
90- Triggered by: ${{ github.actor }}"
Original file line number Diff line number Diff line change @@ -2,10 +2,9 @@ name: Create Version Tag
22
33on :
44 push :
5- branches :
6- - master
75 paths :
86 - ' lerna.json'
7+ workflow_dispatch :
98
109jobs :
1110 create-tag :
3332
3433 git config --global user.name "${{ github.actor }}"
3534 git config --global user.email "${{ github.actor }}@users.noreply.github.com"
36- git tag -a "$TAG_NAME" -m "Release $TAG_NAME"
37- git push origin "$TAG_NAME"
You can’t perform that action at this time.
0 commit comments