From fd40a8b95184b9574165045c54f0103e6bdae547 Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Tue, 12 Oct 2021 10:13:05 +0200 Subject: [PATCH] chore: fix release workflow - globs don't expand in quoted strings to the contrary of variables --- .github/workflows/continuous-integration.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index 755f327b3..c432b7a63 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -577,7 +577,7 @@ jobs: zip -r "${ARTIFACTS_PACKAGED_DIR}/html-docs.zip" ./* tar -cvzf "${ARTIFACTS_PACKAGED_DIR}/html-docs.tar.gz" ./* popd - cp "${RAW_CHANGELOG_DIR}/*" "${ARTIFACTS_PACKAGED_DIR}" + cp "${RAW_CHANGELOG_DIR}"/* "${ARTIFACTS_PACKAGED_DIR}" - name: Create GitHub release if: ${{ success() && !cancelled() }} id: create-release