Skip to content

Merge branch 'feature/release-it' into develop #30

Merge branch 'feature/release-it' into develop

Merge branch 'feature/release-it' into develop #30

Workflow file for this run

name: Release Preview
on:
push:
branches:
- 'release/**'
permissions:
contents: write
packages: read
jobs:
preview:
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: 20
- name: Configure Git user
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Install dependencies
run: npm ci
- name: Release (preview)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run release:preview