Skip to content

Update bevy to 0.11.3 #142

Update bevy to 0.11.3

Update bevy to 0.11.3 #142

Workflow file for this run

on: [push]
name: Build
jobs:
release:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
- windows-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- name: 'Build (Release)'
uses: actions-rs/cargo@v1
with:
command: build
args: --release
- name: 'Upload Artifact (Windows)'
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v3
with:
name: rose-offline-server-${{ matrix.os }}
path: target/release/rose-offline-server.exe
- name: 'Upload Artifact (Ubuntu, MacOS)'
if: matrix.os != 'windows-latest'
uses: actions/upload-artifact@v3
with:
name: rose-offline-server-${{ matrix.os }}
path: target/release/rose-offline-server