From c5349728e373c62c15f661851f00cb873fdb8265 Mon Sep 17 00:00:00 2001 From: Mark Goddard Date: Thu, 14 Sep 2023 16:49:52 +0100 Subject: [PATCH] Fix specifying test_pulp_sync_repo_version in workflow Previously the environment variable was not evaluated due to single quotes. --- .github/workflows/package-sync-version-test-pulp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/package-sync-version-test-pulp.yml b/.github/workflows/package-sync-version-test-pulp.yml index 577b8879..d01b7211 100644 --- a/.github/workflows/package-sync-version-test-pulp.yml +++ b/.github/workflows/package-sync-version-test-pulp.yml @@ -39,7 +39,7 @@ jobs: ansible/test-pulp-repo-sync.yml \ ansible/test-pulp-repo-publication-cleanup.yml \ ansible/test-pulp-repo-publish.yml \ - -e '{test_pulp_sync_repo_version: "$REPO_VERSION"}' + -e test_pulp_sync_repo_version="'$REPO_VERSION'" \ -e deb_package_repo_filter="'$FILTER'" \ -e rpm_package_repo_filter="'$FILTER'" env: