Skip to content

Workflow file for this run

on: [push]
name: Build Rust Binaries
jobs:
build_and_upload:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: [x86_64-unknown-linux-gnu]
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-rust
with:
target: ${{ matrix.target }}
- name: Copy Binary
shell: bash
run: |
cp "./conUDS/target/${{ matrix.target }}/release/conUDS" "./conUDS/"
- uses: actions/upload-artifact@v4
with:
name: conUDS
path: |
./conUDS/assets
./conUDS/conUDS
if-no-files-found: error
# - name: Release
# uses: softprops/action-gh-release@v2
# if: startsWith(github.ref, 'refs/tags/')