Skip to content

Commit

Permalink
👷 Fix GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
RemiBardon committed Jan 1, 2024
1 parent c9ebb50 commit 9347d87
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:

env:
tag: ${{ needs.setup.outputs.tag }}
artifacts: $GITHUB_WORKSPACE/artifacts
artifacts: ${{ env.GITHUB_WORKSPACE }}/artifacts

permissions:
contents: write
Expand All @@ -89,11 +89,11 @@ jobs:
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: $artifacts
path: ${{ env.artifacts }}

- name: Release new version
uses: softprops/action-gh-release@v1
with:
name: ${{ env.tag }}
body: "⚠️ Changelog not yet provided."
files: $artifacts/*
files: ${{ env.artifacts }}/*

0 comments on commit 9347d87

Please sign in to comment.