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 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 }}
You can’t perform that action at this time.
0 commit comments