Skip to content

feat(release): update release #19

feat(release): update release

feat(release): update release #19

Workflow file for this run

name: Semantic Release
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
versioning:
uses: GEWIS/actions/.github/workflows/versioning.yml@v1
with:
dry-run: 'true'
publish-npm:
uses: GEWIS/actions/.github/workflows/npm-release.yml@v1
needs: versioning
if: ${{ needs.versioning.outputs.next_version != '' }}
with:
node-version: '22.x'
version: ${{ needs.versioning.outputs.next_version }}
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}