From 38d15b288e556c30afebe0d3fed77c3b9ecfa726 Mon Sep 17 00:00:00 2001 From: fithwum Date: Fri, 18 Jul 2025 06:03:21 -0700 Subject: [PATCH] Update .gitea/workflows/pipeline.yml --- .gitea/workflows/pipeline.yml | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/pipeline.yml b/.gitea/workflows/pipeline.yml index 8437047..6c64652 100644 --- a/.gitea/workflows/pipeline.yml +++ b/.gitea/workflows/pipeline.yml @@ -4,16 +4,20 @@ on: push: branches: - master - paths-ignore: - - '**/CHANGES.md' - - '**/build-info.json' + paths: + - '.gitea/workflows/*.yml' + - '**/Dockerfile' + - '**/*.sh' + - '!.cache/*' + - '!**/CHANGES.md' + - '!**/build-info.json' schedule: - cron: '15 1 * * 0' env: - IMAGE_REGISTRY: gitea.fithwum.tech + IMAGE_REGISTRY: ${{ secrets.REPO_URL }} IMAGE_ORG: ${{ secrets.GIT_USERNAME }} - IMAGE_REPO_TS: foundry_vtt + IMAGE_REPO: foundry_vtt jobs: check-for-changes: @@ -24,7 +28,7 @@ jobs: - name: Checkout code uses: actions/checkout@v3 with: - fetch-depth: 2 + fetch-depth: 0 - name: Pull latest alpine base run: docker pull alpine:latest @@ -70,6 +74,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 @@ -87,6 +93,8 @@ jobs: steps: - name: Checkout source uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Clone FoundryVTT repo run: | @@ -133,6 +141,8 @@ jobs: steps: - name: Checkout source uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Clone FoundryVTT repo run: |