From 7150304d0c77be84520c4373ed5eb06d0d45a4dd Mon Sep 17 00:00:00 2001 From: Crovaxon Date: Fri, 21 Jun 2024 01:51:47 +0200 Subject: [PATCH] Removing the check image workflow as it is not set up for non dockerhub registries. --- .gitea/workflows/check-docker-image.yaml | 37 ------------------------ 1 file changed, 37 deletions(-) delete mode 100644 .gitea/workflows/check-docker-image.yaml diff --git a/.gitea/workflows/check-docker-image.yaml b/.gitea/workflows/check-docker-image.yaml deleted file mode 100644 index 601bcfd..0000000 --- a/.gitea/workflows/check-docker-image.yaml +++ /dev/null @@ -1,37 +0,0 @@ -name: Check docker image - -on: - push: - branches: - - 'main' - schedule: - - cron: '0 6 * * *' - -jobs: - docker: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Login to Gitea - uses: docker/login-action@v3 - with: - registry: gitea.crovaxon.de - username: ${{ secrets.REGISTRY_USERNAME }} - password: ${{ secrets.REGISTRY_PASS }} - - - name: Check if update available - id: check - uses: lucacome/docker-image-update-checker@v1 - with: - base-image: node:20-alpine - image: gitea.crovaxon.de/crovaxon/foundryvtt-docker:latest - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - push: true - tags: gitea.crovaxon.de/crovaxon/foundryvtt-docker - if: steps.check.outputs.needs-updating == 'true' \ No newline at end of file