diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 5820df6b..0f70bed3 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -53,7 +53,7 @@ jobs: uses: joncloud/makensis-action@v1.2 with: script-file: ./package/Tautulli.nsi - arguments: /DVERSION=${{ steps.get_version.outputs.VERSION_NSIS }} /DINSTALLER_NAME=..\Tautulli-windows-${{ steps.get_version.outputs.RELEASE_VERSION }}.exe + arguments: /DVERSION=${{ steps.get_version.outputs.VERSION_NSIS }} /DINSTALLER_NAME=..\Tautulli-windows-${{ steps.get_version.outputs.RELEASE_VERSION }}-x64.exe include-more-plugins: true include-custom-plugins-path: package/nsis-plugins @@ -61,7 +61,7 @@ jobs: uses: actions/upload-artifact@v2 with: name: Tautulli-windows-installer - path: Tautulli-windows-${{ steps.get_version.outputs.RELEASE_VERSION }}.exe + path: Tautulli-windows-${{ steps.get_version.outputs.RELEASE_VERSION }}-x64.exe - name: Post Status to Discord uses: sarisia/actions-status-discord@v1 @@ -117,13 +117,13 @@ jobs: - name: Create Installer run: | - sudo pkgbuild --install-location /Applications --version ${{ steps.get_version.outputs.VERSION }} --component ./dist/Tautulli.app --scripts ./package/macos-scripts Tautulli-macos-${{ steps.get_version.outputs.RELEASE_VERSION }}.pkg + sudo pkgbuild --install-location /Applications --version ${{ steps.get_version.outputs.VERSION }} --component ./dist/Tautulli.app --scripts ./package/macos-scripts Tautulli-macos-${{ steps.get_version.outputs.RELEASE_VERSION }}-x64.pkg - name: Upload Installer uses: actions/upload-artifact@v2 with: name: Tautulli-macos-installer - path: Tautulli-macos-${{ steps.get_version.outputs.RELEASE_VERSION }}.pkg + path: Tautulli-macos-${{ steps.get_version.outputs.RELEASE_VERSION }}-x64.pkg - name: Post Status to Discord uses: sarisia/actions-status-discord@v1 @@ -188,8 +188,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./Tautulli-windows-${{ steps.get_version.outputs.RELEASE_VERSION }}.exe - asset_name: Tautulli-windows-${{ steps.get_version.outputs.RELEASE_VERSION }}.exe + asset_path: ./Tautulli-windows-${{ steps.get_version.outputs.RELEASE_VERSION }}-x64.exe + asset_name: Tautulli-windows-${{ steps.get_version.outputs.RELEASE_VERSION }}-x64.exe asset_content_type: application/vnd.microsoft.portable-executable - name: Upload MacOS Installer @@ -199,6 +199,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./Tautulli-macos-${{ steps.get_version.outputs.RELEASE_VERSION }}.pkg - asset_name: Tautulli-macos-${{ steps.get_version.outputs.RELEASE_VERSION }}.pkg + asset_path: ./Tautulli-macos-${{ steps.get_version.outputs.RELEASE_VERSION }}-x64.pkg + asset_name: Tautulli-macos-${{ steps.get_version.outputs.RELEASE_VERSION }}-x64.pkg asset_content_type: application/vnd.apple.installer+xml