Skip to content

Commit 85f6b67

Browse files
committed
Added id to download artifact to pass download-path to gh later in the Draft job
1 parent afdb77d commit 85f6b67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/LuaWatcom.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ jobs:
9999
contents: write
100100
actions: read
101101

102-
103102
steps:
104103
- uses: actions/checkout@v4
105104

106105
- name: Download Artifacts
106+
id: download_artifact
107107
uses: actions/download-artifact@v4
108108

109109
- name: Create Draft Release
@@ -115,5 +115,5 @@ jobs:
115115
--draft \
116116
--title "$TAG_NAME" \
117117
--notes "Lua for Watcom builds from $TAG_NAME" \
118-
"Lua Binaries/Lua Exe.zip#Lua Exe.zip" \
119-
"Lua Binaries/Lua Ima.zip#Lua Ima.zip"
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"

0 commit comments

Comments
 (0)