maybe docker is mad about single quotes?

This commit is contained in:
Erica Portnoy 2026-04-28 14:22:01 -07:00
parent 5dedc2c99f
commit b495bc376a
2 changed files with 15 additions and 15 deletions

View file

@ -37,8 +37,8 @@ jobs:
shell: bash
- name: Save the Docker images
run: |-
DOCKER_IMAGES="$(docker images --filter 'reference=*/certbot' --filter 'reference=*/dns-*' --format '{{.Repository}}')"
docker save --output images.tar "$DOCKER_IMAGES"
DOCKER_IMAGES=$(docker images --filter reference="*/certbot" --filter reference="*/dns-*"" --format "{{.Repository}}")
docker save --output images.tar $DOCKER_IMAGES
shell: bash
# If the name of the tar file or artifact changes, the deploy stage will
# also need to be updated.

View file

@ -12,22 +12,22 @@ permissions:
contents: read
jobs:
standard_tests_jobs:
name: Standard tests
uses: "./.github/workflows/standard_tests_jobs.yml"
extended_tests_jobs:
name: Extended tests
uses: "./.github/workflows/extended_tests_jobs.yml"
secrets: inherit
# standard_tests_jobs:
# name: Standard tests
# uses: "./.github/workflows/standard_tests_jobs.yml"
# extended_tests_jobs:
# name: Extended tests
# uses: "./.github/workflows/extended_tests_jobs.yml"
# secrets: inherit
docker_packaging_jobs:
name: Docker packaging
uses: "./.github/workflows/docker_packaging_jobs.yml"
with:
dockerTag: ${{ inputs.dockerTag }}
secrets: inherit
snap_packaging_jobs:
name: Snap packaging
uses: "./.github/workflows/snap_packaging_jobs.yml"
with:
snapBuildTimeout: ${{ inputs.snapBuildTimeout }}
secrets: inherit
# snap_packaging_jobs:
# name: Snap packaging
# uses: "./.github/workflows/snap_packaging_jobs.yml"
# with:
# snapBuildTimeout: ${{ inputs.snapBuildTimeout }}
# secrets: inherit