mirror of
https://github.com/Thream/socketio-jwt.git
synced 2024-07-21 09:38:31 +02:00
30 lines
591 B
YAML
30 lines
591 B
YAML
name: 'Node.js Package'
|
|
|
|
on:
|
|
release:
|
|
types: [created]
|
|
|
|
jobs:
|
|
publish-npm:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: 'actions/checkout@v2.3.4'
|
|
|
|
- name: 'Use Node.js'
|
|
uses: 'actions/setup-node@v2.3.0'
|
|
with:
|
|
node-version: '16.x'
|
|
cache: 'npm'
|
|
registry-url: 'https://registry.npmjs.org/'
|
|
|
|
- name: 'Install'
|
|
run: 'npm install'
|
|
|
|
- name: 'Build'
|
|
run: 'npm run build'
|
|
|
|
- name: 'Publish'
|
|
run: 'npm publish --access public'
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|