Skip to content

fix: version-bump

fix: version-bump #36

Workflow file for this run

name: Release
on:
push:
branches:
- main
- develop
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
registry-url: 'https://registry.npmjs.org'
scope: '@staratlas'
node-version-file: '.nvmrc'
always-auth: true
- run: npm ci
- uses: cycjimmy/semantic-release-action@v4
with:
extra_plugins: |
@semantic-release/changelog
branches: |
[
'main',
{
name: 'develop',
prerelease: true
},
]
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}