Removing the check image workflow as it is not set up for non dockerhub registries.
Build foundry vtt docker image and push to registry / docker (push) Successful in 24s

This commit is contained in:
Crovaxon
2024-06-21 01:51:47 +02:00
parent d97a2ac6de
commit 7150304d0c
-37
View File
@@ -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'