This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
Switch to gnu toolchain #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Autobuild | |
on: | |
push: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: benjlevesque/[email protected] | |
id: short-sha | |
# - name: Setup Rust | |
# run: | | |
# rustup target add x86_64-pc-windows-msvc | |
# rustup toolchain install nightly-x86_64-pc-windows-msvc | |
- name: Build | |
run: cargo build --release --verbose | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: "swMod-${{ steps.short-sha.outputs.sha }}" | |
path: | | |
target/release/swmod-inject.exe | |
target/release/swmod.dll |