Skip to content

feat: adding code and setup repo #14

feat: adding code and setup repo

feat: adding code and setup repo #14

Workflow file for this run

name: Semantic Release
on:
push:
branches: [feat/setup]
jobs:
release:
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release):') }}
runs-on: 'ubuntu-latest'
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'npm'
- name: Install dependencies
run: |
npm install --verbose
- name: Run Semantic Release
env:
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
RELEASE_PROCESS: 'true'
run: |
npm run release-zip
npx semantic-release