build: use actions/[download,upload]-artifact@v4 in release CI configuration

This commit is contained in:
Rémy Raes 2025-02-14 01:28:11 +01:00 committed by pg9182
parent 72acef92b2
commit c7e2d7e593

View file

@ -32,7 +32,7 @@ jobs:
- name: Build
run: cmake --build build/
- name: Upload launcher build as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: northstar-launcher
path: |
@ -40,7 +40,7 @@ jobs:
build/game/*.dll
build/game/bin/x64_retail/*.dll
- name: Upload debug build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: launcher-debug-files
path: |
@ -53,12 +53,12 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Download compiled launcher
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: northstar-launcher
path: northstar-launcher
- name: Download compiled launcher
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: launcher-debug-files
path: launcher-debug-files