Skip to content

Commit

Permalink
0.5.4 - Linux Support
Browse files Browse the repository at this point in the history
  • Loading branch information
ShayBox committed Mar 27, 2024
1 parent f6d48d6 commit 0a9addb
Show file tree
Hide file tree
Showing 5 changed files with 175 additions and 73 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
target: i686-pc-windows-msvc
runner: windows-latest

- name: Linux
target: x86_64-unknown-linux-gnu
runner: ubuntu-latest

name: ${{ matrix.name }}
runs-on: ${{ matrix.runner }}
steps:
Expand All @@ -31,4 +35,9 @@ jobs:
run: cargo build --release --target ${{ matrix.target }}

- name: Upload Release Binary (Windows)
if: ${{ matrix.runner == 'windows-latest' }}
run: gh release upload ${{ github.ref_name }} ./target/${{ matrix.target }}/release/vrc-log.exe --clobber

- name: Upload Release Binary (Linux)
if: ${{ matrix.runner == 'ubuntu-latest' }}
run: gh release upload ${{ github.ref_name }} ./target/${{ matrix.target }}/release/vrc-log --clobber
Loading

0 comments on commit 0a9addb

Please sign in to comment.