mirror of
https://github.com/certbot/certbot.git
synced 2026-07-28 00:24:35 +02:00
maybe docker is mad about single quotes?
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user