Skip to content

feat: allow manual triggering of the publish workflow #12

feat: allow manual triggering of the publish workflow

feat: allow manual triggering of the publish workflow #12

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'yarn'
- name: Debug Environment
run: env
- name: Install dependencies
run: yarn install --ignore-scripts
- name: Run Semantic Release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: yarn release