Update workflows

This commit is contained in:
JonnyWong16 2020-12-17 18:46:02 -08:00
commit 63b5a7c036
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
2 changed files with 5 additions and 6 deletions

View file

@ -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

View file

@ -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: