silverblue-custom/.gitea/workflows/daily-build.yml
Joshua Seiger-Eatwell 7ddec690a9
Some checks failed
Daily Build Silverblue Image / build (push) Has been cancelled
switched to podman image
2025-01-03 08:26:03 +01:00

28 lines
628 B
YAML

name: Daily Build Silverblue Image
on:
schedule:
- cron: '0 0 * * *'
push:
branches:
- main
jobs:
build:
runs-on: podman
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Login to Gitea registry
run: |
podman login git.joshua-se.com -u ${{ secrets.REGISTRY_USERNAME }} -p ${{ secrets.REGISTRY_PASSWORD }}
- name: Build Image
run: |
podman build -t git.joshua-se.com/joshuase96/silverblue-custom:latest .
- name: Push Image
run: |
podman push git.joshua-se.com/joshuase96/silverblue-custom:latest