Skip to content

feat(DMVP-5344): allow semantic release job to push and create release/tags in github #667

feat(DMVP-5344): allow semantic release job to push and create release/tags in github

feat(DMVP-5344): allow semantic release job to push and create release/tags in github #667

Workflow file for this run

name: Semantic Release
on: [pull_request, push]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}