Skip to content

Auto Update

Auto Update #1

Workflow file for this run

name: Auto Update
on:
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
script:
- "runtime.js"
- "wasm-plugin.js"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Update
run: node ./scripts/${{ matrix.script }}
env:
CRAWL_SECRET: ${{ secrets.CRAWL_SECRET }}