1
0
Fork 0

Compare commits

...

2 commits

Author SHA1 Message Date
782465f228 ci: Make quoting consistent
All checks were successful
/ Build oci-builder (push) Successful in 1m1s
/ Test oci-builder (push) Successful in 51s
/ Release oci-builder (push) Successful in 3s
2025-04-21 20:20:30 +02:00
7a63e21525 ci: Rebuild oci-builder weekly 2025-04-21 20:20:22 +02:00

View file

@ -1,5 +1,7 @@
on:
push:
schedule:
- cron: '0 5 * * 0'
jobs:
build-oci-builder:
@ -7,8 +9,8 @@ jobs:
runs-on: 'oci-builder'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: 'Checkout'
uses: 'actions/checkout@v4'
- name: 'Build image'
uses: 'https://git.uncontrol.me/ver4a-actions/buildah-build@v2-compat'
@ -47,11 +49,11 @@ jobs:
needs: 'build-oci-builder'
steps:
- name: Make sure oci-builder originates from current workflow run
run: diff <(echo $GITHUB_RUN_ID) /.github_run_id
- name: 'Make sure oci-builder originates from current workflow run'
run: 'diff <(echo $GITHUB_RUN_ID) /.github_run_id'
- name: Checkout
uses: actions/checkout@v4
- name: 'Checkout'
uses: 'actions/checkout@v4'
- name: 'Build image'
uses: 'https://git.uncontrol.me/ver4a-actions/buildah-build@v2-compat'
@ -75,8 +77,8 @@ jobs:
needs: 'test-oci-builder'
steps:
- name: Make sure oci-builder originates from current workflow run
run: diff <(echo $GITHUB_RUN_ID) /.github_run_id
- name: 'Make sure oci-builder originates from current workflow run'
run: 'diff <(echo $GITHUB_RUN_ID) /.github_run_id'
- name: 'Log in to registry'
uses: 'actions/podman-login@v1'
@ -87,4 +89,4 @@ jobs:
auth_file_path: '$HOME/.config/containers/auth.json'
- name: 'Move :ci-dev to :stable'
run: skopeo copy docker://registry.uncontrol.me/ver4a/oci-builder:ci-dev docker://registry.uncontrol.me/ver4a/oci-builder:stable
run: 'skopeo copy docker://registry.uncontrol.me/ver4a/oci-builder:ci-dev docker://registry.uncontrol.me/ver4a/oci-builder:stable'