Skip to content

release

release #1399

Workflow file for this run

name: release
on:
schedule:
- cron: '0 23 * * *'
workflow_dispatch:
permissions:
contents: read
id-token: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.CI_GITHUB_TOKEN }}
- uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'pnpm'
always-auth: true
registry-url: https://registry.npmjs.org
- name: Setup Git
run: |
git config --local user.name "Artem Zakharchenko"
git config --local user.email "kettanaito@gmail.com"
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
- name: Release
run: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}