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'