Skip to content

Commit 5fa07a2

Browse files
committed
Revert "Added id to download artifact to pass download-path to gh later in the Draft job"
This reverts commit 85f6b67
1 parent 4f5c85f commit 5fa07a2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/LuaWatcom.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)