From adff14075380094ec76e47086a710caea8bcad13 Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Sat, 13 Jun 2026 18:18:18 -0400 Subject: [PATCH] feat: add cron workflow (daily midnight rebuild) - standard htpasswd pattern --- .gitea/workflows/cron.yaml | 59 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .gitea/workflows/cron.yaml diff --git a/.gitea/workflows/cron.yaml b/.gitea/workflows/cron.yaml new file mode 100644 index 0000000..bcf03d2 --- /dev/null +++ b/.gitea/workflows/cron.yaml @@ -0,0 +1,59 @@ +name: Cron + +on: + schedule: + - cron: '0 0 * * *' + +jobs: + hadolint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 + - uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf + continue-on-error: true + with: + dockerfile: Dockerfile + failure-threshold: error + + test: + runs-on: ubuntu-latest + needs: hadolint + steps: + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 + - uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 + - name: Build image + run: docker build -t ci-image:${{ github.sha }} . + + build-push: + runs-on: ubuntu-latest + needs: test + steps: + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 + with: + fetch-depth: 0 + - uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 + - uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Get latest tag + id: get-latest-tag + run: | + TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "") + echo "tag=$TAG" >> $GITHUB_OUTPUT + echo "has_tag=$([ -n "$TAG" ] && echo true || echo false)" >> $GITHUB_OUTPUT + - uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 + id: meta + with: + images: jcabillot/unrar + tags: | + type=raw,value=latest + type=raw,value=${{ steps.get-latest-tag.outputs.tag }}-latest,enable=${{ steps.get-latest-tag.outputs.has_tag }} + - uses: docker/build-push-action@f9f3042e7f2789586610d6e8b85c8f03e5195baf + with: + context: . + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + push: true + cache-from: type=gha + cache-to: type=gha,mode=max