diff --git a/.github/workflows/docker_packaging_jobs.yml b/.github/workflows/docker_packaging_jobs.yml index 97ae2893b..8ffc3dd81 100644 --- a/.github/workflows/docker_packaging_jobs.yml +++ b/.github/workflows/docker_packaging_jobs.yml @@ -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. diff --git a/.github/workflows/test_and_package_stage.yml b/.github/workflows/test_and_package_stage.yml index a6d7387dd..7ba7f8cfd 100644 --- a/.github/workflows/test_and_package_stage.yml +++ b/.github/workflows/test_and_package_stage.yml @@ -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