silverblue-custom/.gitea/workflows/daily-build.yml
Joshua Seiger-Eatwell d3c1f3ab00
Some checks failed
Daily Build Silverblue Image / build (push) Failing after 5s
docker -> podman
2025-01-03 08:21:24 +01:00

32 lines
721 B
YAML

name: Daily Build Silverblue Image
on:
schedule:
- cron: '0 0 * * *'
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Podman
run: |
sudo apt-get install -y podman
- 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