Skip to content

Commit 1cf7d20

Browse files
committed
chore: Fix and debug release script
Signed-off-by: Arnau Siches <asiches@gmail.com>
1 parent 3fea301 commit 1cf7d20

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
job:
1616
# - { artifact_name: libtoml_vtab.a, os: ubuntu-latest, target: x86_64-unknown-linux-musl }
17-
- { artifact_name: toml_vtab.so, os: ubuntu-latest, target: x86_64-unknown-linux-gnu }
17+
- { artifact_name: libtoml_vtab.so, os: ubuntu-latest, target: x86_64-unknown-linux-gnu }
1818
- { artifact_name: libtoml_vtab.dylib, os: macos-latest, target: x86_64-apple-darwin }
1919
- { artifact_name: libtoml_vtab.dll, os: windows-latest, target: x86_64-pc-windows-gnu }
2020
steps:
@@ -31,7 +31,7 @@ jobs:
3131
- name: Checkout
3232
uses: actions/checkout@v3
3333
- name: Build
34-
run: cargo build --release --target=${{ matrix.job.target }}
34+
run: cargo build --release --target=${{ matrix.job.target }} && ls target/{{ matrix.job.target }}
3535
- name: Upload binaries to release
3636
uses: svenstaro/upload-release-action@v2
3737
with:

0 commit comments

Comments
 (0)