21 lines
576 B
YAML
21 lines
576 B
YAML
|
on:
|
||
|
push:
|
||
|
jobs:
|
||
|
build-artifacts:
|
||
|
runs-on: docker
|
||
|
steps:
|
||
|
- uses: https://code.forgejo.org/actions/checkout@v3
|
||
|
- id: install-dependencies
|
||
|
run: |
|
||
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
||
|
shell: bash
|
||
|
- id: cargo-build-release
|
||
|
run: |
|
||
|
source "$HOME/.cargo/env"
|
||
|
cargo build --release
|
||
|
shell: bash
|
||
|
- uses: https://code.forgejo.org/actions/upload-artifact@v3
|
||
|
with:
|
||
|
name: teamspeak-query-lib
|
||
|
path: ${{ github.workspace }}/target/release/teamspeak-query-lib
|