From 68af287815e71aa4caa368364262e992f92f3f30 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 11:08:53 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- .gitea/workflows/cache-update.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/cache-update.yml diff --git a/.gitea/workflows/cache-update.yml b/.gitea/workflows/cache-update.yml new file mode 100644 index 0000000..621d49d --- /dev/null +++ b/.gitea/workflows/cache-update.yml @@ -0,0 +1,19 @@ +name: Cache Update + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + cache-update: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Update Cache + uses: actions/cache@v4 + with: + path: ~/.cache/pip + key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }} + restore-keys: | + ${{ runner.os }}-pip-