Skip to content

Commit c534972

Browse files
committed
Fix specifying test_pulp_sync_repo_version in workflow
Previously the environment variable was not evaluated due to single quotes.
1 parent b82dda9 commit c534972

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/package-sync-version-test-pulp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
ansible/test-pulp-repo-sync.yml \
4040
ansible/test-pulp-repo-publication-cleanup.yml \
4141
ansible/test-pulp-repo-publish.yml \
42-
-e '{test_pulp_sync_repo_version: "$REPO_VERSION"}'
42+
-e test_pulp_sync_repo_version="'$REPO_VERSION'" \
4343
-e deb_package_repo_filter="'$FILTER'" \
4444
-e rpm_package_repo_filter="'$FILTER'"
4545
env:

0 commit comments

Comments
 (0)