Skip to content

Merge pull request #10 from timothyhay256/dependabot/cargo/xxhash-rus… #20

Merge pull request #10 from timothyhay256/dependabot/cargo/xxhash-rus…

Merge pull request #10 from timothyhay256/dependabot/cargo/xxhash-rus… #20

Workflow file for this run

# .github/workflows/build.yml
name: Build Linux
on:
push:
branches: [main]
jobs:
build:
name: Build Linux
runs-on: [self-hosted, linux]
steps:
- uses: actions/checkout@master
- name: Compile
id: compile
uses: rust-build/[email protected]
with:
RUSTTARGET: x86_64-unknown-linux-musl
UPLOAD_MODE: none
TOOLCHAIN_VERSION: stable
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Binary
path: |
${{ steps.compile.outputs.BUILT_ARCHIVE }}
${{ steps.compile.outputs.BUILT_CHECKSUM }}