From 63b5a7c036e2a7225bdea88dcccbac4c46be6758 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Thu, 17 Dec 2020 18:46:02 -0800 Subject: [PATCH] Update workflows --- .github/workflows/publish-docker.yml | 2 +- .github/workflows/publish-installers.yml | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish-docker.yml b/.github/workflows/publish-docker.yml index fc06f9f3..5db38871 100644 --- a/.github/workflows/publish-docker.yml +++ b/.github/workflows/publish-docker.yml @@ -40,8 +40,8 @@ jobs: uses: docker/setup-qemu-action@v1 - name: Set up Docker Buildx - id: buildx uses: docker/setup-buildx-action@v1 + id: buildx with: version: latest diff --git a/.github/workflows/publish-installers.yml b/.github/workflows/publish-installers.yml index 9f73b973..31d2dd5c 100644 --- a/.github/workflows/publish-installers.yml +++ b/.github/workflows/publish-installers.yml @@ -49,7 +49,6 @@ jobs: python-version: 3.8 - name: Cache Dependencies - id: cache_dependencies uses: actions/cache@v2 with: path: ~\AppData\Local\pip\Cache @@ -66,8 +65,8 @@ jobs: pyinstaller -y ./package/Tautulli-${{ matrix.os }}.spec - name: Create Windows Installer - if: matrix.os == 'windows' uses: joncloud/makensis-action@v1.2 + if: matrix.os == 'windows' with: script-file: ./package/Tautulli.nsi arguments: > @@ -130,8 +129,8 @@ jobs: echo ::set-output name=CHANGELOG::$changelog - name: Create Release - id: create_release uses: actions/create-release@v1 + id: create_release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -145,8 +144,8 @@ jobs: prerelease: ${{ endsWith(steps.get_version.outputs.RELEASE_VERSION, '-beta') }} - name: Upload Windows Installer - if: env.WORKFLOW_CONCLUSION == 'success' uses: actions/upload-release-asset@v1 + if: env.WORKFLOW_CONCLUSION == 'success' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -156,8 +155,8 @@ jobs: asset_content_type: application/vnd.microsoft.portable-executable - name: Upload MacOS Installer - if: env.WORKFLOW_CONCLUSION == 'success' uses: actions/upload-release-asset@v1 + if: env.WORKFLOW_CONCLUSION == 'success' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: