Skip to content

Commit

Permalink
back to 38ddca3
Browse files Browse the repository at this point in the history
  • Loading branch information
Veha0001 committed Jan 12, 2025
1 parent 43a9f8d commit 9e38099
Showing 1 changed file with 3 additions and 48 deletions.
51 changes: 3 additions & 48 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,61 +38,16 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Windows-BinaryPatch
name: BinaryPatch
path: |
target/debug/Patcher.exe
target/release/Patcher.exe
if-no-files-found: error

- name: Release
if: ${{ github.event_name == 'push' }}
uses: softprops/[email protected]
with:
name: Windows Binary Patcher
name: Binary Patcher
tag_name: latest-nightly
files: target/release/Patcher.exe

linux-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Cargo Caches
uses: actions/cache@v4
with:
path: |
~/.cargo
~/.rustup
target
key: cargo-${{ hashFiles('**/Cargo.lock') }}

- name: Setup Rust
run: |
rustup default stable
rustup target add x86_64-unknown-linux-gnu
rustc -vV
cargo -vV
- name: Build
run: |
cargo build
cargo build --release
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Linux-BinaryPatch
path: |
target/debug/Patcher
target/release/Patcher
if-no-files-found: error

- name: Release
if: ${{ github.event_name == 'push' }}
uses: softprops/[email protected]
with:
name: Linux Binary Patcher
tag_name: latest-nightly
files: target/release/Patcher

0 comments on commit 9e38099

Please sign in to comment.