Mycelium/.gitea/workflows/release.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 22: mapping key "uses" already defined at line 17 line 21: mapping key "name" already defined at line 18
2024-12-05 19:31:48 +11:00

28 lines
622 B
YAML

# .gitea/workflows/release.yml
on:
push:
tags:
- '*'
jobs:
release:
name: release ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: [x86_64-unknown-linux-musl]
steps:
uses: rust-build/rust-build.action@v1.4.5
name: Install Dependencies
run: sudo apt-get install libdbus-1-dev libdbus-glib-1-dbus
name: Compile and release
uses: actions/checkout@master
env:
GITHUB_TOKEN: ${{ secrets.GT_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
EXTRA_FILES: "README.md"