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 362c3fd
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
cmake --install ${{github.workspace}}/build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
name: ${{ github.jobs[github.job].name }}-nightly
path: ${{github.workspace}}/dist/**/*

apple-x86_64:
Expand Down Expand Up @@ -72,9 +72,9 @@ jobs:
cmake --install ${{github.workspace}}/build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
name: ${{ github.jobs[github.job].name }}-nightly
path: ${{github.workspace}}/dist/**/*


Expand Down Expand Up @@ -145,9 +145,9 @@ jobs:
cmake --install ${{github.workspace}}/build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
name: ${{ github.jobs[github.job].name }}-nightly
path: ${{github.workspace}}/dist/**/*

linux-arm64:
Expand Down Expand Up @@ -217,9 +217,9 @@ jobs:
cmake --install ${{github.workspace}}/build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
name: ${{ github.jobs[github.job].name }}-nightly
path: ${{github.workspace}}/dist/**/*

linux-x86:
Expand Down Expand Up @@ -283,9 +283,9 @@ jobs:
cmake --install ${{github.workspace}}/build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
name: ${{ github.jobs[github.job].name }}-nightly
path: ${{github.workspace}}/dist/**/*

linux-x86_64:
Expand Down Expand Up @@ -333,9 +333,9 @@ jobs:
cmake --install ${{github.workspace}}/build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
name: ${{ github.jobs[github.job].name }}-nightly
path: ${{github.workspace}}/dist/**/*


Expand Down Expand Up @@ -370,9 +370,9 @@ jobs:
cmake --install ${{github.workspace}}\build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
name: ${{ github.jobs[github.job].name }}-nightly
path: ${{github.workspace}}/dist/**/*

windows-x86:
Expand Down Expand Up @@ -406,9 +406,9 @@ jobs:
cmake --install ${{github.workspace}}\build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
name: ${{ github.jobs[github.job].name }}-nightly
path: ${{github.workspace}}/dist/**/*

windows-x86_64:
Expand Down Expand Up @@ -442,7 +442,7 @@ jobs:
cmake --install ${{github.workspace}}\build --config RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nightly-build
name: ${{ github.jobs[github.job].name }}-nightly
path: ${{github.workspace}}/dist/**/*

0 comments on commit 362c3fd

Please sign in to comment.