Skip to content

Commit b6dae6b

Browse files
authored
Create release.yml
1 parent 6b931c6 commit b6dae6b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/release.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Release distributions
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
docker-release:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- run: npm publish
14+
env:
15+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)