Remove AppChinaProvider from providers list and update Provider type … #2
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: Rule Updater | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: pnpm/action-setup@master | |
with: | |
version: 10 | |
run_install: false | |
- uses: actions/setup-node@main | |
with: | |
node-version: 22 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run updater | |
run: pnpm start | |
- uses: s0/git-publish-subdir-action@develop | |
with: | |
REPO: self | |
BRANCH: rules | |
FOLDER: ./result | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |