Mycelium/.gitea/workflows/release.yml
Benjamyn Love c0592bd98f
Some checks failed
/ release ${{ matrix.target }} (x86_64-unknown-linux-gnu) (push) Failing after 1m26s
really fixed action
2024-12-05 19:07:25 +11:00

24 lines
530 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-gnu]
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/rust-build.action@v1.4.5
env:
GITHUB_TOKEN: ${{ secrets.GT_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
EXTRA_FILES: "README.md"