Skip to content

Commit 42535e4

Browse files
hm
1 parent 9b346a9 commit 42535e4

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,6 @@ jobs:
7878
# we need all commits to create a changelog
7979
fetch-depth: 0
8080

81-
- name: 👇 Download Artifacts
82-
uses: actions/download-artifact@v4
83-
with:
84-
path: artifacts
85-
merge-multiple: true
86-
8781
- name: 📝 Create Changelog
8882
uses: orhun/git-cliff-action@v3
8983
id: create_changelog
@@ -93,10 +87,19 @@ jobs:
9387
env:
9488
GITHUB_REPO: ${{ github.repository }}
9589

90+
- name: 👇 Download Artifacts
91+
uses: actions/download-artifact@v4
92+
id: download
93+
with:
94+
merge-multiple: true
95+
96+
- name: Print Download Path
97+
run: echo "Downloaded Artifacts to ${{ steps.download.outputs.download-path }}"
98+
9699
- name: 📂 Create Release
97100
uses: softprops/action-gh-release@v1
98101
with:
99102
token: ${{ secrets.GITHUB_TOKEN }}
100-
body: ${{ steps.create_changelog.outputs.changelog }}
103+
body: ${{ steps.create_changelog.outputs.content }}
101104
tag_name: ${{ steps.create_changelog.outputs.version }}
102-
files: artifacts/*
105+
files: ${{ steps.download.outputs.download-path }}

0 commit comments

Comments
 (0)