mirror of
https://github.com/GiriNeko/CheckChrome.git
synced 2025-12-17 05:37:23 +00:00
17 lines
382 B
YAML
17 lines
382 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: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libxml2-utils
|
|
chmod +x run.sh
|
|
./run.sh
|