We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b4a75c commit d443d96Copy full SHA for d443d96
.github/workflows/release.yml
@@ -9,6 +9,8 @@ jobs:
9
steps:
10
- name: Checkout
11
uses: actions/checkout@v2
12
+ with:
13
+ fetch-depth: 0
14
15
- name: Install
16
run: npm ci
@@ -22,7 +24,8 @@ jobs:
22
24
23
25
npm run build
26
- git checkout -b v$VERSION_TAG
27
+ git checkout master
28
npm version $VERSION_TAG --git-tag-version=false
- git commit -am "Release version $VERSION_TAG [ci skip]"
- git push origin HEAD:release
29
+ git commit -am "ci: release version $VERSION_TAG [ci skip]"
30
+ git push origin -f HEAD:release
31
+ git push origin HEAD:master
0 commit comments