Skip to content

Commit

Permalink
Add release GH workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ku1ik committed Apr 10, 2024
1 parent ce1040d commit 0546648
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Release

on:
push:
tags:
- "v*.*.*"

jobs:
publish:
name: ${{ matrix.target }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
use-cross: false

- os: ubuntu-latest
target: x86_64-unknown-linux-musl
use-cross: false

- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
use-cross: true

- os: macos-latest
target: x86_64-apple-darwin
use-cross: false

- os: macos-latest
target: aarch64-apple-darwin
use-cross: false

steps:
- uses: actions/checkout@v3

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
target: ${{ matrix.target }}

- name: Build
uses: actions-rs/cargo@v1
with:
use-cross: ${{ matrix.use-cross }}
command: build
args: --target ${{ matrix.target }} --release --locked

- name: Upload binaries to the release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/${{ matrix.target }}/release/vt
asset_name: vt-${{ matrix.target }}$
tag: ${{ github.ref }}

0 comments on commit 0546648

Please sign in to comment.