We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10a4fd8 commit b9aaceaCopy full SHA for b9aacea
.github/workflows/release-make.yml
@@ -136,7 +136,9 @@ jobs:
136
done
137
138
- name: Bump package.json version
139
- run: yarn version --no-git-tag-version --new-version "${VERSION#v}"
+ run: |
140
+ yarn version --no-git-tag-version --new-version "${VERSION#v}"
141
+ git add package.json
142
143
- name: Add to CHANGELOG.md
144
if: inputs.final
.github/workflows/release-npm.yml
@@ -39,6 +39,10 @@ jobs:
39
tag: next
40
ignore-scripts: false
41
42
+ - name: Check npm package was published
43
+ if: steps.npm-publish.outputs.id == ''
44
+ run: exit 1
45
+
46
- name: 🎖️ Add `latest` dist-tag to final releases
47
if: steps.npm-publish.outputs.id && !contains(steps.npm-publish.outputs.id, '-rc.')
48
run: npm dist-tag add "$release" latest
0 commit comments