From a4be993821a0241aa93ecb1abd195d99ac827e42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C5=91rinc=20Serf=C5=91z=C5=91?= Date: Mon, 6 Nov 2023 21:54:59 +0100 Subject: [PATCH] Updated the release workflow --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c6841f..81261ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -117,13 +117,13 @@ jobs: uses: softprops/action-gh-release@v1 with: files: | - ${{github.workspace}}/build/*.deb - ${{github.workspace}}/build/*.msi + ${{github.workspace}}/artifact/*.deb + ${{github.workspace}}/artifact/*.msi - name: Push artifacts to itch.io shell: bash run: | wget https://broth.itch.ovh/butler/linux-amd64/LATEST/archive/default -O butler.zip unzip butler.zip export BUTLER_API_KEY=${{ secrets.BUTLER_API_KEY }} - ./butler push ${{github.workspace}}/build/Release/*.msi mfeproject/midiconn:windows-msi --userversion $GITHUB_REF_NAME - ./butler push ${{github.workspace}}/build/*.deb mfeproject/midiconn:ubuntu2204-deb --userversion $GITHUB_REF_NAME + ./butler push ${{github.workspace}}/artifact/*.msi mfeproject/midiconn:windows-msi --userversion $GITHUB_REF_NAME + ./butler push ${{github.workspace}}/artifact/*.deb mfeproject/midiconn:ubuntu2204-deb --userversion $GITHUB_REF_NAME