Skip to content

Commit 1c7f6c9

Browse files
committed
test binary
1 parent c4c852c commit 1c7f6c9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,11 @@ jobs:
5151
VERSION="${{ github.ref_name }}"
5252
VERSION="${VERSION#v}" # Remove 'v' prefix if present
5353
BINARY_NAME="literate-${{ matrix.platform_name }}"
54-
cd bin
54+
mkdir -p release
55+
cp bin/lit release/
56+
cd release
5557
tar czf "${BINARY_NAME}.tar.gz" lit
56-
echo "ARTIFACT_PATH=bin/${BINARY_NAME}.tar.gz" >> $GITHUB_ENV
58+
echo "ARTIFACT_PATH=release/${BINARY_NAME}.tar.gz" >> $GITHUB_ENV
5759
5860
- name: Upload Artifact
5961
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)