From a910ea39f401aa5225635ce596340328be236c68 Mon Sep 17 00:00:00 2001 From: Ultradesu Date: Thu, 3 Apr 2025 13:38:14 +0100 Subject: [PATCH] Drop PKGBUILDaction --- .github/workflows/build.yml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e5f23da..6f001ba 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -93,11 +93,26 @@ jobs: with: name: tmux-helper-macos path: ./ - - name: Upload binary assets run: | wget https://github.com/aktau/github-release/releases/download/v0.7.2/linux-amd64-github-release.tar.bz2 tar xjf linux-amd64-github-release.tar.bz2 export GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} - ./bin/linux/amd64/github-release + + ./bin/linux/amd64/github-release upload \ + -u house-of-vanity \ + -r tmux-helper \ + --tag ${{ steps.get_version.outputs.FULL_TAG }} \ + --name tmux-helper-${{ steps.get_version.outputs.VERSION }}-linux \ + --file ./tmux-helper + + mv ./tmux-helper ./tmux-helper-macos + + ./bin/linux/amd64/github-release upload \ + -u house-of-vanity \ + -r tmux-helper \ + --tag ${{ steps.get_version.outputs.FULL_TAG }} \ + --name tmux-helper-${{ steps.get_version.outputs.VERSION }}-macos \ + --file ./tmux-helper-macos +