From f085d7b6de1fc0fd24c10e52de438c3e6291bb60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20M=C3=A4rkle?= Date: Fri, 9 Feb 2024 10:09:41 +0100 Subject: [PATCH] GitHub Actions -> Fix publish-release pattern being referenced wrongly. --- .github/workflows/job-publish-release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/job-publish-release.yaml b/.github/workflows/job-publish-release.yaml index 0df4a283c..ab13f499e 100644 --- a/.github/workflows/job-publish-release.yaml +++ b/.github/workflows/job-publish-release.yaml @@ -37,7 +37,7 @@ jobs: name: "Create Versioned Release" if: ${{ github.ref != 'refs/tags/canary' }} with: - artifacts: $artifacts_pattern + artifacts: ${{ env.artifacts_pattern }} - uses: ncipollo/release-action@6c75be85e571768fa31b40abf38de58ba0397db5 name: "Create Canary Release" @@ -47,4 +47,4 @@ jobs: body: "Unstable release, intended for testing." prerelease: true allowUpdates: true # overwrite existing canary release - artifacts: $artifacts_pattern + artifacts: ${{ env.artifacts_pattern }}