Skip to content

Merge pull request #36 from Boehringer-Ingelheim/feature/dependencies #34

Merge pull request #36 from Boehringer-Ingelheim/feature/dependencies

Merge pull request #36 from Boehringer-Ingelheim/feature/dependencies #34

Workflow file for this run

name: Release
on:
push:
branches:
- master
- next
jobs:
release:
env:
# Disable husky (git hooks) in CI, see: https://typicode.github.io/husky/#/?id=disable-husky-in-cidocker
HUSKY: 0
name: Release
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
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 }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run release:ci