22 lines
397 B
YAML
22 lines
397 B
YAML
name: Rust
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/fantasypvp/crystalos_builder:latest
|
|
credentials:
|
|
username: FantasyPvP
|
|
password: ${{ secrets.DOCKER_CONTAINER_REGISTRY_TOKEN }}
|
|
steps:
|
|
- run: cargo build --release
|