Skip to content

ci: add release preview action #8

ci: add release preview action

ci: add release preview action #8

Workflow file for this run

name: Preview release
on:
pull_request:
branches:
- main
jobs:
release:
name: Preview release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install dependencies
run: yarn install
- name: Preview release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release --dry-run --no-ci --branches "${{ github.head_ref || github.ref_name }}"