Skip to content

Commit 76c3faa

Browse files
committed
ci: fix release-binaries workflow
1 parent 143fd68 commit 76c3faa

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/release-binaries.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,20 @@ jobs:
2525
upload-binaries:
2626
name: ${{ matrix.target }}
2727
if: github.repository_owner == 'rolv-apneseth'
28-
runs-on: ubuntu-latest
28+
runs-on: ${{ matrix.os }}
2929
strategy:
3030
matrix:
3131
include:
3232
- target: aarch64-unknown-linux-gnu
33+
os: ubuntu-latest
3334
- target: x86_64-unknown-linux-gnu
35+
os: ubuntu-latest
3436
- target: aarch64-apple-darwin
37+
os: macos-latest
3538
- target: aarch64-pc-windows-msvc
39+
os: windows-latest
3640
- target: x86_64-pc-windows-msvc
41+
os: windows-latest
3742
steps:
3843
- name: Checkout repository
3944
uses: actions/checkout@v5
@@ -44,7 +49,7 @@ jobs:
4449
target: ${{ matrix.target }}
4550
- uses: taiki-e/upload-rust-binary-action@v1
4651
with:
47-
bin: clipvault
52+
bin: omaro
4853
target: ${{ matrix.target }}
4954
tar: all
5055
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)