Skip to content

Commit 3fea301

Browse files
committed
chore: Fix linux target
Signed-off-by: Arnau Siches <asiches@gmail.com>
1 parent 1597877 commit 3fea301

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
job:
16-
- { artifact_name: libtoml_vtab.so, os: ubuntu-latest, target: x86_64-unknown-linux-musl }
17-
# - { artifact_name: toml_vtab.so, os: ubuntu-latest, target: x86_64-unknown-linux-gnu }
16+
# - { 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 }
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:
@@ -37,6 +37,6 @@ jobs:
3737
with:
3838
repo_token: ${{ secrets.GITHUB_TOKEN }}
3939
file: target/${{ matrix.job.target }}/release/${{ matrix.job.artifact_name }}
40-
asset_name: ${{ matrix.job.target }}_${{ matrix.job.artifact_name }}
40+
asset_name: ${{ matrix.job.artifact_name }}_${{ matrix.job.target }}
4141
tag: ${{ github.ref }}
4242
overwrite: true

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[lib]
77
name = "toml_vtab"
8-
crate-type=["lib", "cdylib"]
8+
crate-type=["lib", "cdylib", "staticlib"]
99

1010
[dependencies]
1111
anyhow = "1"

0 commit comments

Comments
 (0)