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.
2 parents adcc910 + 694d73c commit 9936d6eCopy full SHA for 9936d6e
.github/workflows/create_release.yml
@@ -35,16 +35,14 @@ jobs:
35
git config --global user.name "${{ github.event.sender.login }}"
36
37
- name: Apply standard-version
38
- run: standard-version -t "" --no-verify
+ run: standard-version -t "" --no-verify --first-release
39
40
- name: Get new version
41
id: version
42
run: echo "VERSION=$(jq .version package.json -r)" >> $GITHUB_OUTPUT
43
44
- name: Commit release
45
run: |
46
- git add .
47
- git commit --no-verify -m "chore(release): ${{ steps.version.outputs.VERSION }}"
48
git checkout -b release/${{ steps.version.outputs.VERSION }}
49
git tag ${{ steps.version.outputs.VERSION }}
50
git push origin release/${{ steps.version.outputs.VERSION }}
0 commit comments