Skip to content

chore(ci-cd): removed semantic-git plugin that was preventing release… #64

chore(ci-cd): removed semantic-git plugin that was preventing release…

chore(ci-cd): removed semantic-git plugin that was preventing release… #64

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
branches:
- beta
- main
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.10"
- name: Install node dependencies
run: |
npm i -g \
semantic-release@23 \
conventional-changelog-conventionalcommits \
@semantic-release/commit-analyzer \
@semantic-release/release-notes-generator \
@semantic-release/changelog \
@semantic-release/git \
@semantic-release/github \
conventional-changelog-conventionalcommits
- name: Release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: semantic-release