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