This repository has been archived on 2024-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
socketio-jwt/.github/workflows/release.yml

40 lines
898 B
YAML
Raw Normal View History

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:
runs-on: "ubuntu-latest"
permissions:
contents: "write"
issues: "write"
pull-requests: "write"
id-token: "write"
2020-12-27 18:42:48 +01:00
steps:
- uses: "actions/checkout@v4.0.0"
2020-12-27 18:42:48 +01:00
- name: "Setup Node.js"
uses: "actions/setup-node@v3.8.1"
2021-03-08 14:33:53 +01:00
with:
node-version: "20.x"
cache: "npm"
2021-03-08 14:33:53 +01:00
- name: "Install dependencies"
run: "npm clean-install"
2021-03-08 14:33:53 +01:00
- name: "Build Package"
run: "npm run build"
2020-12-27 18:42:48 +01:00
- run: "npm run build:typescript"
- name: "Verify the integrity of provenance attestations and registry signatures for installed dependencies"
run: "npm audit signatures"
- 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 }}