This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
Updater CI #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Updater CI | |
on: workflow_dispatch | |
jobs: | |
release-update: | |
runs-on: ubuntu-latest | |
if: startsWith(github.repository, 'zzzgydi') | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
cache: "yarn" | |
- name: Yarn install | |
run: yarn install --network-timeout 1000000 --frozen-lockfile | |
- name: Release updater file | |
run: yarn run updater | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |