Skip to content

Commit 211616d

Browse files
committed
Fix upload-artifact action
1 parent 2d0f0f5 commit 211616d

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/post-release.yml

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

54-
- name: List
55-
run: |
56-
ls target
57-
ls target/release
58-
ls target/${{ matrix.target }}/release
59-
6054
- name: Upload Artifact
6155
uses: actions/upload-artifact@v4
6256
with:
6357
name: cjs-module-lexer-${{ matrix.target }}
64-
path: target/release/native
58+
path: target/${{ matrix.target }}/release/native
6559
if-no-files-found: error
6660

6761
release:

0 commit comments

Comments
 (0)