Skip to content

Commit

Permalink
GitHub Actions -> Fix publish-release pattern being referenced wrongly.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbfm committed Feb 12, 2024
1 parent 9ee101c commit f085d7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/job-publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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 }}

0 comments on commit f085d7b

Please sign in to comment.