Skip to content

Commit

Permalink
Updating actions/upload-artifact@v3 to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
kwhat committed Apr 19, 2024
1 parent 117cef0 commit c6d10d8
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ jobs:
cmake --install ${{github.workspace}}/build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
path: ${{github.workspace}}/dist/**/*
overwrite: true

apple-x86_64:
runs-on: macos-latest
Expand Down Expand Up @@ -72,10 +73,11 @@ jobs:
cmake --install ${{github.workspace}}/build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
path: ${{github.workspace}}/dist/**/*
overwrite: true


linux-arm:
Expand Down Expand Up @@ -145,10 +147,11 @@ jobs:
cmake --install ${{github.workspace}}/build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
path: ${{github.workspace}}/dist/**/*
overwrite: true

linux-arm64:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -217,10 +220,11 @@ jobs:
cmake --install ${{github.workspace}}/build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
path: ${{github.workspace}}/dist/**/*
overwrite: true

linux-x86:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -283,10 +287,11 @@ jobs:
cmake --install ${{github.workspace}}/build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
path: ${{github.workspace}}/dist/**/*
overwrite: true

linux-x86_64:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -333,10 +338,11 @@ jobs:
cmake --install ${{github.workspace}}/build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
path: ${{github.workspace}}/dist/**/*
overwrite: true


windows-arm:
Expand Down Expand Up @@ -370,10 +376,11 @@ jobs:
cmake --install ${{github.workspace}}\build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
path: ${{github.workspace}}/dist/**/*
overwrite: true

windows-x86:
runs-on: windows-latest
Expand Down Expand Up @@ -406,10 +413,11 @@ jobs:
cmake --install ${{github.workspace}}\build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
path: ${{github.workspace}}/dist/**/*
overwrite: true

windows-x86_64:
runs-on: windows-latest
Expand Down Expand Up @@ -442,7 +450,8 @@ jobs:
cmake --install ${{github.workspace}}\build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
path: ${{github.workspace}}/dist/**/*
overwrite: true

0 comments on commit c6d10d8

Please sign in to comment.