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.
1 parent 1cab82d commit 902cdc2Copy full SHA for 902cdc2
.github/workflows/publish.yml
@@ -12,7 +12,7 @@ permissions:
12
13
jobs:
14
check-version:
15
- name: "🔍 Check NPM Version"
+ name: "Check NPM Version"
16
runs-on: ubuntu-latest
17
outputs:
18
should_publish: ${{ steps.check.outputs.should_publish }}
@@ -38,7 +38,7 @@ jobs:
38
fi
39
40
publish:
41
- name: "📦 Publish to NPM"
+ name: "Publish to NPM"
42
needs: check-version
43
if: needs.check-version.outputs.should_publish == 'true'
44
@@ -61,7 +61,7 @@ jobs:
61
run: npm publish --access public
62
63
skip-notice:
64
- name: "⏭️ Skip Publish (Version Exists)"
+ name: "Skip Publish (Version Exists)"
65
66
if: needs.check-version.outputs.should_publish == 'false'
67
0 commit comments