Skip to content

release

release #391

Workflow file for this run

name: release
on:
schedule:
- cron: '0 23 * * *'
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: actions/checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GH_ADMIN_TOKEN }}
- name: Setup Git
run: |
git config --local user.name "kettanaito"
git config --local user.email "[email protected]"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: release
run: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GH_ADMIN_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}