2023-01-02 15:23:16 +01:00
|
|
|
name: 'Release'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
steps:
|
2023-05-13 16:03:06 +02:00
|
|
|
- uses: 'actions/checkout@v3.5.2'
|
2023-01-02 15:23:16 +01:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
persist-credentials: false
|
|
|
|
|
2023-05-13 16:03:06 +02:00
|
|
|
- name: 'Setup Node.js'
|
2023-04-02 21:03:51 +02:00
|
|
|
uses: 'actions/setup-node@v3.6.0'
|
2023-01-02 15:23:16 +01:00
|
|
|
with:
|
|
|
|
node-version: 'lts/*'
|
|
|
|
cache: 'npm'
|
|
|
|
|
2023-05-13 16:03:06 +02:00
|
|
|
- name: 'Install dependencies'
|
|
|
|
run: 'npm clean-install'
|
2023-01-02 15:23:16 +01:00
|
|
|
|
|
|
|
- name: 'Release'
|
|
|
|
run: 'npm run release'
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|