Skip to content

Commit

Permalink
Add csynd release
Browse files Browse the repository at this point in the history
  • Loading branch information
fioncat committed Jan 24, 2024
1 parent b690ff8 commit 7f8e38e
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
draft: true

build:
release-csync:
strategy:
matrix:
include:
Expand All @@ -30,6 +30,7 @@ jobs:
os: macos-latest
- target: x86_64-pc-windows-msvc
os: windows-latest

runs-on: ${{ matrix.os }}

steps:
Expand All @@ -46,3 +47,28 @@ jobs:
zip: windows
target: ${{ matrix.target }}
token: ${{ secrets.GITHUB_TOKEN }}

release-csyncd:
strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-apple-darwin
os: macos-latest
- target: aarch64-apple-darwin
os: macos-latest
- target: x86_64-pc-windows-msvc
os: windows-latest

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: csyncd
tar: unix
zip: windows
target: ${{ matrix.target }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 7f8e38e

Please sign in to comment.