Skip to content

Commit b8ad3d8

Browse files
committed
fix artifact
1 parent d44d08c commit b8ad3d8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/post-release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,14 @@ jobs:
5151
- name: Build
5252
run: cargo build -p native --release --target ${{ matrix.target }}
5353

54+
- name: Move build
55+
run: mv target/${{ matrix.target }}/release/native cjs-module-lexer-${{ matrix.target }}
56+
5457
- name: Upload Artifact
5558
uses: actions/upload-artifact@v4
5659
with:
5760
name: cjs-module-lexer-${{ matrix.target }}
58-
path: target/${{ matrix.target }}/release/native
61+
path: cjs-module-lexer-${{ matrix.target }}
5962
if-no-files-found: error
6063

6164
release:

0 commit comments

Comments
 (0)