We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d9aa43 commit 23c742aCopy full SHA for 23c742a
1 file changed
.github/workflows/bump-and-release.yml
@@ -113,11 +113,19 @@ jobs:
113
NEW_VERSION=${{ steps.new_version.outputs.version }}
114
TAG_NAME="v$NEW_VERSION"
115
116
- echo "Pushing tag $TAG_NAME"
+ npm version "$NEW_VERSION"
117
+
118
+ git push --follow-tags
119
+ # - name: Push New Tag
120
+ # run: |
121
+ # NEW_VERSION=${{ steps.new_version.outputs.version }}
122
+ # TAG_NAME="v$NEW_VERSION"
123
124
+ # echo "Pushing tag $TAG_NAME"
125
- git tag -a "$TAG_NAME" -m "Release $TAG_NAME"
- # Token ถูก set ตั้งแต่ checkout แล้ว จึง push ได้เลย
- git push origin "$TAG_NAME"
126
+ # git tag -a "$TAG_NAME" -m "Release $TAG_NAME"
127
+ # # Token ถูก set ตั้งแต่ checkout แล้ว จึง push ได้เลย
128
+ # git push origin "$TAG_NAME"
129
130
- name: Create GitHub Release
131
uses: softprops/action-gh-release@v2
0 commit comments