File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change 78
78
# we need all commits to create a changelog
79
79
fetch-depth : 0
80
80
81
- - name : 👇 Download Artifacts
82
- uses : actions/download-artifact@v4
83
- with :
84
- path : artifacts
85
- merge-multiple : true
86
-
87
81
- name : 📝 Create Changelog
88
82
uses : orhun/git-cliff-action@v3
89
83
id : create_changelog
@@ -93,10 +87,19 @@ jobs:
93
87
env :
94
88
GITHUB_REPO : ${{ github.repository }}
95
89
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
+
96
99
- name : 📂 Create Release
97
100
uses : softprops/action-gh-release@v1
98
101
with :
99
102
token : ${{ secrets.GITHUB_TOKEN }}
100
- body : ${{ steps.create_changelog.outputs.changelog }}
103
+ body : ${{ steps.create_changelog.outputs.content }}
101
104
tag_name : ${{ steps.create_changelog.outputs.version }}
102
- files : artifacts/*
105
+ files : ${{ steps.download.outputs.download-path }}
You can’t perform that action at this time.
0 commit comments