Skip to content

Commit

Permalink
build: use actions/[download,upload]-artifact@v4 in release CI config…
Browse files Browse the repository at this point in the history
…uration
  • Loading branch information
Alystrasz authored and pg9182 committed Feb 14, 2025
1 parent 72acef9 commit c7e2d7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ 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: |
build/game/*.exe
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: |
Expand All @@ -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
Expand Down

0 comments on commit c7e2d7e

Please sign in to comment.