File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -103,18 +103,16 @@ jobs:
103103 - uses : actions/checkout@v4
104104
105105 - name : Download Artifacts
106- id : download-artifact
107106 uses : actions/download-artifact@v4
108107
109108 - name : Create Draft Release
110109 env :
111110 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
112111 run : |
113112 TAG_NAME="${GITHUB_REF#refs/tags/}" # Extract the tag name
114- echo "Creating release from ${{ steps.download-artifact.outputs.download-path }}"
115113 gh release create "$TAG_NAME" \
116114 --draft \
117115 --title "$TAG_NAME" \
118116 --notes "Lua for Watcom builds from $TAG_NAME" \
119- "${{ steps.download-artifact.outputs.download-path }} /Lua Exe.zip#Lua Exe.zip" \
120- "${{ steps.download-artifact.outputs.download-path }} /Lua Ima.zip#Lua Ima.zip"
117+ "Lua Binaries /Lua Exe.zip#Lua Exe.zip" \
118+ "Lua Binaries /Lua Ima.zip#Lua Ima.zip"
You can’t perform that action at this time.
0 commit comments