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