Skip to content

Merge pull request #280 from roebi/dependabot/npm_and_yarn/types/node… #113

Merge pull request #280 from roebi/dependabot/npm_and_yarn/types/node…

Merge pull request #280 from roebi/dependabot/npm_and_yarn/types/node… #113

Workflow file for this run

# from https://semantic-release.gitbook.io/semantic-release
name: Release
"on":
workflow_dispatch:
push:
branches:
- master
- next
- beta
jobs:
release:
name: release
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: npm
- name: Install dependencies
run: npm clean-install
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.TOKEN_FOR_NPM_202408 }}
run: npx semantic-release