Skip to content

Merge pull request #89 from Boehringer-Ingelheim/dependabot/npm_and_y… #58

Merge pull request #89 from Boehringer-Ingelheim/dependabot/npm_and_y…

Merge pull request #89 from Boehringer-Ingelheim/dependabot/npm_and_y… #58

Workflow file for this run

name: Release
on:
push:
branches:
- main
- next
jobs:
release:
env:
# Disable husky (git hooks) in CI, see: https://typicode.github.io/husky/guide.html#with-env-variables
HUSKY: 0
name: Release
runs-on: ubuntu-22.04
permissions:
id-token: write # Required for npm OIDC trusted publishing
contents: write # Required for creating GitHub releases
issues: write # Required for @semantic-release/github success comments
pull-requests: write # Required for @semantic-release/github success comments
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"
registry-url: https://registry.npmjs.org/
cache: npm
- name: Install Dependencies
run: npm clean-install
- name: Release package to npm and GitHub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run release:ci