We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df7a14e commit 90777fbCopy full SHA for 90777fb
2 files changed
.github/workflows/publish.yml
@@ -80,6 +80,7 @@ jobs:
80
name: build-output
81
path: |
82
package.json
83
+ package-lock.json
84
dist/
85
retention-days: 1
86
@@ -130,7 +131,7 @@ jobs:
130
131
run: |
132
git config user.name "GitHub Actions"
133
git config user.email "actions@github.com"
- git add package.json
134
+ git add package.json package-lock.json
135
git diff --staged --quiet || git commit -m "chore(release): v${NEW_VERSION}"
136
git push
137
git tag -a "v${NEW_VERSION}" -m "Release v${NEW_VERSION}"
0 commit comments