Autobuild docker image

Rebuild docker image every month and on push to main
This commit is contained in:
Laborratte 5 2025-11-02 22:43:58 +01:00
parent 5446bc48ed
commit d67f25c6da
Signed by: Laborratte5
GPG key ID: 3A30072E35202C02

View file

@ -0,0 +1,17 @@
on:
push:
branches:
- main
schedule:
- cron: '@monthly'
enable-email-notification: true
jobs:
publish-docker:
runs-on: ubuntu-latest
steps:
- uses: https://code.forgejo.org/actions/checkout@v4
- run: docker build -t git.ratte.dev/Laborratte5/linux-iso-seeder:{tag}
- run: docker push git.ratte.dev/Laborratte5/linux-iso-seeder:{tag}