Skip to content

Commit

Permalink
💚 Fix action version name
Browse files Browse the repository at this point in the history
  • Loading branch information
Schneegans committed Aug 26, 2024
1 parent 13ef739 commit 2d9e45c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit 2d9e45c

Please sign in to comment.