Skip to content

Commit

Permalink
0.1.0 - Initial Release
Browse files Browse the repository at this point in the history
  • Loading branch information
ShayBox committed Aug 6, 2023
1 parent badb82c commit d5aa95c
Show file tree
Hide file tree
Showing 13 changed files with 1,692 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
on:
release:
types: [created]

jobs:
release:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

strategy:
fail-fast: false
matrix:
include:
- name: Windows
target: i686-pc-windows-msvc
runner: windows-latest

name: ${{ matrix.name }}
runs-on: ${{ matrix.runner }}
steps:
- name: Fetch Repository
uses: actions/checkout@v3

- name: Update Rust Toolchain
run: rustup update stable

- name: Add Rust Target
run: rustup target add ${{ matrix.target }}

- name: Build Release Binary
run: cargo build --release --target ${{ matrix.target }}

- name: Upload Release Binary (Windows)
run: gh release upload ${{ github.ref_name }} ./target/${{ matrix.target }}/release/vrc-log.exe --clobber
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea/
.vscode/
target/
Loading

0 comments on commit d5aa95c

Please sign in to comment.