Skip to content

github pls pls pls

github pls pls pls #1

Workflow file for this run

name: Build
on:
push:
branches: [v2]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
target: [x86_64-apple-darwin, aarch64-apple-darwin]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install Rust
run: rustup target add ${{ matrix.target }}
- name: Compile
run: cargo build --release --target ${{ matrix.target }}
- name: Upload artifact
if: success()
uses: actions/upload-artifact@v3
with:
name: Binary-${{ matrix.target }}
path: |
target/${{ matrix.target }}/release/Minecraft-server-auto-setup