File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -103,17 +103,18 @@ jobs:
103103 - uses : actions/checkout@v4
104104
105105 - name : Download Artifacts
106- id : download_artifact
106+ id : download-artifact
107107 uses : actions/download-artifact@v4
108108
109109 - name : Create Draft Release
110110 env :
111111 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
112112 run : |
113113 TAG_NAME="${GITHUB_REF#refs/tags/}" # Extract the tag name
114+ echo "Creating release from ${{ steps.download-artifact.outputs.download-path }}"
114115 gh release create "$TAG_NAME" \
115116 --draft \
116117 --title "$TAG_NAME" \
117118 --notes "Lua for Watcom builds from $TAG_NAME" \
118- "${{ steps.download_artifact .outputs.download-path }}/Lua Exe.zip#Lua Exe.zip" \
119- "${{ steps.download_artifact .outputs.download-path }}/Lua Ima.zip#Lua Ima.zip"
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"
You can’t perform that action at this time.
0 commit comments