CheckChrome/.github/workflows/main.yml
2023-11-06 23:06:38 +08:00

16 lines
367 B
YAML

name: Run Custom Script
on:
push:
branches:
- master # 你可以根据需要更改分支名称
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Run custom script
run: |
apt-get update && apt-get -y install libxml2-utils
chmod +x run.sh
./run.sh