From 9106c068ac876c7f67b10ca7107bb5ae89abfb07 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Tue, 22 Dec 2020 15:26:37 -0800 Subject: [PATCH] Update Windows installer workflow --- .github/workflows/publish-installers.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/publish-installers.yml b/.github/workflows/publish-installers.yml index 171b0be0..a74d1ba9 100644 --- a/.github/workflows/publish-installers.yml +++ b/.github/workflows/publish-installers.yml @@ -41,6 +41,7 @@ jobs: echo ::set-output name=VERSION::0.0.0 echo ::set-output name=RELEASE_VERSION::${GITHUB_SHA::7} fi + echo ${GITHUB_REF#refs/heads/} > branch.txt echo $GITHUB_SHA > version.txt - name: Set Up Python @@ -64,6 +65,11 @@ jobs: run: | pyinstaller -y ./package/Tautulli-${{ matrix.os }}.spec + - name: Move Windows Updater Files + if: matrix.os == 'windows' + run: | + MOVE /Y dist\updater\* dist\Tautulli + - name: Create Windows Installer uses: joncloud/makensis-action@v1.2 if: matrix.os == 'windows'