From 2d9e45c88cf5ba505b8029d0a79ae2a75efcf552 Mon Sep 17 00:00:00 2001 From: Simon Schneegans Date: Mon, 26 Aug 2024 21:28:12 +0200 Subject: [PATCH] :green_heart: Fix action version name --- .github/workflows/deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5dba33c0..1ca0005d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -35,7 +35,7 @@ jobs: run: | tools/make-app-image.sh - name: Upload Packages - uses: svenstaro/upload-release-action@v2.9.0 + uses: svenstaro/upload-release-action@2.9.0 with: file: out/make/**/* tag: ${{ github.ref }} @@ -63,14 +63,14 @@ jobs: run: | npm run make - name: Upload Zip - uses: svenstaro/upload-release-action@v2.9.0 + uses: svenstaro/upload-release-action@2.9.0 with: file: out/make/zip/win32/x64/* tag: ${{ github.ref }} file_glob: true prerelease: true - name: Upload Squirrel Installer - uses: svenstaro/upload-release-action@v2.9.0 + uses: svenstaro/upload-release-action@2.9.0 with: file: out/make/squirrel.windows/x64/*.exe tag: ${{ github.ref }} @@ -112,14 +112,14 @@ jobs: run: | npm run make - name: Upload DMG - uses: svenstaro/upload-release-action@v2.9.0 + uses: svenstaro/upload-release-action@2.9.0 with: file: out/make/*.dmg tag: ${{ github.ref }} file_glob: true prerelease: true - name: Upload Zip - uses: svenstaro/upload-release-action@v2.9.0 + uses: svenstaro/upload-release-action@2.9.0 with: file: out/make/zip/darwin/**/*.zip tag: ${{ github.ref }}