From bb24d472766f099f35c6d9d4b186db49b423ca15 Mon Sep 17 00:00:00 2001 From: yihong1120 Date: Sun, 4 Aug 2024 02:44:58 +0800 Subject: [PATCH] Remove incorrect script --- .github/workflows/sync_wiki.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/sync_wiki.yml diff --git a/.github/workflows/sync_wiki.yml b/.github/workflows/sync_wiki.yml deleted file mode 100644 index b293dca..0000000 --- a/.github/workflows/sync_wiki.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Sync Wiki - -on: - schedule: - - cron: '0 * * * *' # Execute every hour - workflow_dispatch: # Execute manually - -jobs: - sync-wiki: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Sync Wiki from mutable.ai - run: | - git clone https://github.com/yihong1120/Construction-Hazard-Detection.wiki.git - cd Construction-Hazard-Detection.wiki - curl -L https://wiki.mutable.ai/yihong1120/Construction-Hazard-Detection -o mutable_wiki.zip - unzip -o mutable_wiki.zip -d . - git add . - git commit -m "Update Wiki from mutable.ai" - git push