Skip to content

feat: add tokens.json to output #36

feat: add tokens.json to output

feat: add tokens.json to output #36

Workflow file for this run

name: 🚀 Release
on:
push:
branches:
- main
- next
pull_request:
branches:
- main
workflow_dispatch:
permissions:
packages: write
contents: write
pull-requests: write
jobs:
release:
name: Release
runs-on: ubuntu-22.04
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: "package.json"
cache: "pnpm"
- name: Install Dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: pnpm semantic-release