mirror of
https://github.com/R2Northstar/NorthstarLauncher
synced 2026-08-23 20:26:04 -04:00
build: use actions/[download,upload]-artifact@v4 in release CI configuration
This commit is contained in:
parent
72acef92b2
commit
c7e2d7e593
1 changed files with 4 additions and 4 deletions
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue