asklyphe/.forgejo/build-service/action.yml
husky 30b3c2352e
Some checks failed
/ build-all-services (push) Failing after 4s
rearrange some stuff
2025-03-12 20:50:59 -07:00

16 lines
No EOL
442 B
YAML

inputs:
service-name:
description: 'name of the service to build and upload'
required: true
runs:
using: "composite"
steps:
- run: |
mkdir -pv artifacts
cargo build --release --bin ${{ inputs.service-name }}
mv target/release/${{ inputs.service-name }} artifacts/
shell: bash
- uses: actions/upload-artifact@v3
with:
name: "${{ inputs.service-name }}"
path: artifacts/