Upgrade Github action: upload-artifact to v4 (v3 is deprecated)

This commit is contained in:
Jonatan Heyman 2025-03-03 13:16:16 +01:00
parent 7aff5d75ef
commit d3e0e6b3a2

View File

@ -64,7 +64,7 @@ jobs:
- name: Upload Linux artifact - name: Upload Linux artifact
if: ${{ matrix.os == 'ubuntu-latest' }} if: ${{ matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: heynote-linux-${{ github.sha }} name: heynote-linux-${{ github.sha }}
path: release/*/Heynote_*.AppImage path: release/*/Heynote_*.AppImage
@ -72,7 +72,7 @@ jobs:
- name: Upload Mac artifact - name: Upload Mac artifact
if: ${{ matrix.os == 'macos-latest' }} if: ${{ matrix.os == 'macos-latest' }}
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: heynote-mac-arm64-${{ github.sha }} name: heynote-mac-arm64-${{ github.sha }}
path: release/*/Heynote_*_arm64.dmg path: release/*/Heynote_*_arm64.dmg
@ -80,7 +80,7 @@ jobs:
- name: Upload Windows artifact - name: Upload Windows artifact
if: ${{ matrix.os == 'windows-latest' }} if: ${{ matrix.os == 'windows-latest' }}
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: heynote-windows-${{ github.sha }} name: heynote-windows-${{ github.sha }}
path: release/*/Heynote_*.exe path: release/*/Heynote_*.exe