.disabled

This commit is contained in:
imnyang 2025-06-06 03:48:38 +09:00
commit c943645419
No known key found for this signature in database
GPG key ID: 356406A02D4AFA55
3 changed files with 0 additions and 0 deletions

View file

@ -1,27 +0,0 @@
name: Release
on:
push:
branches:
- release
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install Dependencies
run: pnpm i --frozen-lockfile
- name: Semantic release
run: pnpm run release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}