2023-10-23 23:21:05 +02:00
|
|
|
name: "Release"
|
2022-01-06 19:52:25 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
2023-10-23 23:21:05 +02:00
|
|
|
runs-on: "ubuntu-latest"
|
2023-05-13 16:21:58 +02:00
|
|
|
permissions:
|
2023-10-23 23:21:05 +02:00
|
|
|
contents: "write"
|
|
|
|
issues: "write"
|
|
|
|
pull-requests: "write"
|
|
|
|
id-token: "write"
|
2022-01-06 19:52:25 +01:00
|
|
|
steps:
|
2023-12-26 22:43:05 +01:00
|
|
|
- uses: "actions/checkout@v4.1.1"
|
2022-01-06 19:52:25 +01:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
persist-credentials: false
|
|
|
|
|
2023-10-23 23:21:05 +02:00
|
|
|
- name: "Setup Node.js"
|
2023-12-26 22:43:05 +01:00
|
|
|
uses: "actions/setup-node@v4.0.1"
|
2022-01-06 19:52:25 +01:00
|
|
|
with:
|
2023-10-23 23:21:05 +02:00
|
|
|
node-version: "lts/*"
|
|
|
|
cache: "npm"
|
2022-01-06 19:52:25 +01:00
|
|
|
|
2023-10-23 23:21:05 +02:00
|
|
|
- name: "Install dependencies"
|
|
|
|
run: "npm clean-install"
|
2022-01-06 19:52:25 +01:00
|
|
|
|
2023-10-23 23:21:05 +02:00
|
|
|
- name: "Build"
|
|
|
|
run: "npm run build"
|
2022-01-06 19:52:25 +01:00
|
|
|
|
2023-10-23 23:21:05 +02:00
|
|
|
- run: "npm run build:typescript"
|
2023-01-10 22:15:14 +01:00
|
|
|
|
2023-10-23 23:21:05 +02:00
|
|
|
- name: "Verify the integrity of provenance attestations and registry signatures for installed dependencies"
|
|
|
|
run: "npm audit signatures"
|
2023-05-13 16:21:58 +02:00
|
|
|
|
2023-10-23 23:21:05 +02:00
|
|
|
- name: "Release"
|
|
|
|
run: "npm run release"
|
2022-01-06 19:52:25 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|