Update .gitea/workflows/release.yml

This commit is contained in:
Benjamyn Love 2025-03-20 21:52:11 -04:00
parent ae543de20c
commit 10b1d25316

View File

@ -4,6 +4,8 @@ on:
push: push:
tags: tags:
- '*' - '*'
env:
GITHUB_TOKE: {{ secrets.GT_TOKEN }}
jobs: jobs:
release: release:
@ -12,7 +14,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
steps: steps:
- uses: actions/checkout@main - uses: actions/checkout@v4
- name: Install deps - name: Install deps
run: apt-get update; apt-get install -y libdbus-1-3 libdbus-1-dev libdbus-1-3 pkg-config run: apt-get update; apt-get install -y libdbus-1-3 libdbus-1-dev libdbus-1-3 pkg-config
- name: Build binary - name: Build binary
@ -20,6 +22,7 @@ jobs:
with: with:
command: "build" command: "build"
target: "x86_64-unknown-linux-gnu" target: "x86_64-unknown-linux-gnu"
toolchain: "stable"
args: "--locked --release" args: "--locked --release"
use-rust-cache: false use-rust-cache: false
strip: true strip: true