Skip to content

Commit

Permalink
Update deployment workflow to fix Node.js warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-spataru committed May 5, 2024
1 parent 2684aca commit df1a7ff
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
#-------------------------------------------------------------------------------

env:
VERSION: "2.0.0"
VERSION: "2.1.0"
EXECUTABLE: "SerialStudio"
APPLICATION: "Serial Studio"
UNIXNAME: "serial-studio"
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
mv *.AppImage ${{env.EXECUTABLE}}-${{env.VERSION}}-Linux.AppImage
- name: '📤 Upload artifact: AppImage'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{env.EXECUTABLE}}-${{env.VERSION}}-Linux.AppImage
path: ${{env.EXECUTABLE}}-${{env.VERSION}}-Linux.AppImage
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
Compress-Archive -Path "${{env.EXECUTABLE}}-${{env.VERSION}}-Windows" -DestinationPath "${{env.EXECUTABLE}}-${{env.VERSION}}-Windows.zip"
- name: '📦 Make NSIS installer'
uses: joncloud/makensis-action@v3.6
uses: joncloud/makensis-action@v4.1
with:
script-file: deploy/windows/nsis/setup.nsi

Expand All @@ -231,13 +231,13 @@ jobs:
ren *.exe ${{env.EXECUTABLE}}-${{env.VERSION}}-Windows.exe
- name: '📤 Upload artifact: NSIS installer'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{env.EXECUTABLE}}-${{env.VERSION}}-Windows.exe
path: deploy/windows/nsis/${{env.EXECUTABLE}}-${{env.VERSION}}-Windows.exe

- name: '📤 Upload artifact: Portable application'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{env.EXECUTABLE}}-${{env.VERSION}}-Windows.zip
path: ${{env.EXECUTABLE}}-${{env.VERSION}}-Windows.zip
Expand All @@ -264,7 +264,7 @@ jobs:
shell: bash

- name: '🧰 Checkout'
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
Expand All @@ -291,7 +291,7 @@ jobs:
MINGW_INSTALLS: ${{ matrix.msystem }}

- name: '📤 Upload artifact: MSYS2 ${{ matrix.arch }} package'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: msys2-pkgs
path: msys2/*.zst
Expand Down

0 comments on commit df1a7ff

Please sign in to comment.