We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d44d08c commit b8ad3d8Copy full SHA for b8ad3d8
.github/workflows/post-release.yml
@@ -51,11 +51,14 @@ jobs:
51
- name: Build
52
run: cargo build -p native --release --target ${{ matrix.target }}
53
54
+ - name: Move build
55
+ run: mv target/${{ matrix.target }}/release/native cjs-module-lexer-${{ matrix.target }}
56
+
57
- name: Upload Artifact
58
uses: actions/upload-artifact@v4
59
with:
60
name: cjs-module-lexer-${{ matrix.target }}
- path: target/${{ matrix.target }}/release/native
61
+ path: cjs-module-lexer-${{ matrix.target }}
62
if-no-files-found: error
63
64
release:
0 commit comments