2022-08-26 16:29:20 +02:00
|
|
|
name: 'Release'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-08-26 22:48:52 +02:00
|
|
|
branches: [master]
|
2022-08-26 16:29:20 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: 'ubuntu-latest'
|
2023-05-13 17:02:20 +02:00
|
|
|
permissions:
|
|
|
|
contents: 'write'
|
|
|
|
issues: 'write'
|
|
|
|
pull-requests: 'write'
|
|
|
|
id-token: 'write'
|
2022-08-26 16:29:20 +02:00
|
|
|
steps:
|
2023-05-13 17:00:31 +02:00
|
|
|
- uses: 'actions/checkout@v3.5.2'
|
2022-08-26 16:29:20 +02:00
|
|
|
|
2023-05-13 17:00:31 +02:00
|
|
|
- name: 'Setup Node.js'
|
2023-01-10 21:23:32 +01:00
|
|
|
uses: 'actions/setup-node@v3.6.0'
|
2022-08-26 16:29:20 +02:00
|
|
|
with:
|
|
|
|
node-version: 'lts/*'
|
|
|
|
cache: 'npm'
|
|
|
|
|
2023-05-13 17:00:31 +02:00
|
|
|
- name: 'Install dependencies'
|
|
|
|
run: 'npm clean-install'
|
2022-08-26 16:29:20 +02:00
|
|
|
|
|
|
|
- name: 'Build Package'
|
|
|
|
run: 'npm run build'
|
|
|
|
|
2023-05-13 17:02:20 +02:00
|
|
|
- name: 'Verify the integrity of provenance attestations and registry signatures for installed dependencies'
|
|
|
|
run: 'npm audit signatures'
|
|
|
|
|
2022-08-26 16:29:20 +02:00
|
|
|
- name: 'Release'
|
|
|
|
run: 'npm run release'
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|