Skip to content

Commit

Permalink
CI: upgrade to actions/upload-artifacts@v4 (deprecation)
Browse files Browse the repository at this point in the history
  • Loading branch information
Puerling committed Oct 16, 2024
1 parent 4d35c9f commit eab99e7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -713,15 +713,15 @@ jobs:
- name: 📦 Archive mobile web app
if: matrix.target == 'mobile'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: webapp-mobile
path: ui-web/
if-no-files-found: error

- name: 📦 Archive desktop web app
if: matrix.target == 'desktop'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: webapp-desktop
path: ui-cpp/ui-imgui/webapp/
Expand Down Expand Up @@ -846,15 +846,15 @@ jobs:
- name: 📦 Archive ubuntu package
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: spirit-ubuntu
path: ${{runner.workspace}}/build/*.tar.gz
if-no-files-found: error

- name: 📦 Archive macOS package
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: spirit-macos
path: |
Expand All @@ -867,7 +867,7 @@ jobs:

- name: 📦 Archive windows package
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: spirit-windows
path: ${{runner.workspace}}/build/*.zip
Expand Down

0 comments on commit eab99e7

Please sign in to comment.