Skip to content

Commit 4f5c85f

Browse files
committed
Added an echo to check the artifact folder path was captured
1 parent 85f6b67 commit 4f5c85f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/LuaWatcom.yml

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

0 commit comments

Comments
 (0)