1
0
Fork 0

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

This commit is contained in:
ver4a 2025-04-21 20:20:30 +02:00
parent 7a63e21525
commit 782465f228

View file

@ -9,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'
@ -49,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'
@ -77,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'
@ -89,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'