Pull and updates to the base image on each build
All checks were successful
ci / workstation (push) Successful in 2s
ci / workstation-nvidia (push) Successful in 2s

This commit is contained in:
Jonathan Cremin 2025-06-04 13:59:41 +01:00
parent 92dff7fa07
commit f7616b5c2c

View file

@ -30,6 +30,10 @@ jobs:
filters: |
src:
- 'workstation/**'
- name: Fetch latest image
if: github.event_name == 'schedule' || steps.changes.outputs.src == 'true'
run: |
podman pull cremin.dev/jonathan/ublue-silverblue-main:42
- name: Build image
if: github.event_name == 'schedule' || steps.changes.outputs.src == 'true'
uses: https://cremin.dev/actions/buildah-build@v2
@ -72,6 +76,10 @@ jobs:
filters: |
src:
- 'workstation-nvidia/**'
- name: Fetch latest image
if: github.event_name == 'schedule' || steps.changes.outputs.src == 'true'
run: |
podman pull cremin.dev/jonathan/ublue-silverblue-nvidia:42
- name: Build image
if: github.event_name == 'schedule' || steps.changes.outputs.src == 'true'
uses: https://cremin.dev/actions/buildah-build@v2