From d56c62dba8edcc453e04e7e026309099d73dda44 Mon Sep 17 00:00:00 2001 From: Luca Versari Date: Sat, 6 Sep 2025 10:53:04 +0200 Subject: [PATCH] Set TM_DATA_DIR in release.yml --- .github/workflows/release.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec00434bb..c3b06265e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,6 +22,8 @@ jobs: - debian:trixie container: image: ${{ matrix.os }} + env: + TM_DATA_DIR: /usr/share/task-maker-rust steps: - uses: actions/checkout@v4 - name: Install Deps @@ -60,9 +62,16 @@ jobs: uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: tmr-debs-${{ env.ARTIFACT_SUFFIX }} - path: tmr-debs-${{ env.ARTIFACT_SUFFIX }}.tar.gz + path: "target/debian/*.deb" compression-level: 0 + - name: Upload the artifacts + uses: skx/github-action-publish-binaries@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + args: "target/debian/*.deb" + aur: name: AUR runs-on: ubuntu-latest