-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add placeholder action to publish to NPM
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# This is a placeholder GitHub Action with the sole purpose of making this | ||
# action appear on the Action interface. It isn't supposed to be executed on | ||
# the current branch, only on the `v1` branch. | ||
# Related discussion: https://github.com/github/docs/issues/31007 | ||
|
||
name: Publish package to NPM | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Print warning | ||
run: echo 'Publishing this branch to NPM is not supported' | ||
- name: Make the action fail | ||
run: exit 1 |