2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-21 09:38:31 +02:00
socketio-jwt/.github/workflows/release.yml

30 lines
569 B
YAML
Raw Normal View History

2021-07-23 23:15:52 +02:00
name: 'Release'
2020-12-27 18:42:48 +01:00
on:
2021-07-23 23:15:52 +02:00
push:
branches: [master]
2020-12-27 18:42:48 +01:00
jobs:
2021-07-23 23:15:52 +02:00
release:
2020-12-27 18:42:48 +01:00
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.0.0'
2020-12-27 18:42:48 +01:00
- name: 'Use Node.js'
uses: 'actions/setup-node@v3.1.0'
2021-03-08 14:33:53 +01:00
with:
node-version: 'lts/*'
cache: 'npm'
2021-03-08 14:33:53 +01:00
- name: 'Install'
run: 'npm install'
2021-03-08 14:33:53 +01:00
2021-07-23 23:15:52 +02:00
- name: 'Build Package'
2021-03-08 14:33:53 +01:00
run: 'npm run build'
2020-12-27 18:42:48 +01:00
2021-07-23 23:15:52 +02:00
- name: 'Release'
run: 'npm run release'
2020-12-27 18:42:48 +01:00
env:
2021-07-23 23:15:52 +02:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}