Skip to content

Release

Release #24

Workflow file for this run

name: Release
on:
workflow_run:
workflows:
- CI
types:
- completed
branches:
- main
jobs:
release:
name: Create new release
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use PNPM
uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install Node dependencies
run: HUSKY=0 pnpm install --frozen-lockfile
- name: Run Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: pnpm exec semantic-release