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 0bdf44c commit eb40654Copy full SHA for eb40654
.github/workflows/publish.yml
@@ -0,0 +1,19 @@
1
+# This is a placeholder GitHub Action with the sole purpose of making this
2
+# action appear on the Action interface. It isn't supposed to be executed on
3
+# the current branch, only on the `v1` branch.
4
+# Related discussion: https://github.com/github/docs/issues/31007
5
+
6
+name: Publish package to NPM
7
8
+on:
9
+ workflow_dispatch:
10
11
+jobs:
12
+ deploy:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - name: Print warning
17
+ run: echo 'Publishing this branch to NPM is not supported'
18
+ - name: Make the action fail
19
+ run: exit 1
0 commit comments