Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pierremolinaro authored Sep 10, 2024
1 parent 2c6bffa commit dd98578
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
cmake -B ${{github.workspace}}/build -A x64
cmake --build ${{github.workspace}}/build --config Release
- name: Upload windows build
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows
path: ${{github.workspace}}/build/Analyzers/Release/*.dll
Expand All @@ -31,7 +31,7 @@ jobs:
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
cmake --build ${{github.workspace}}/build
- name: Upload MacOS build
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4
with:
name: macos-x86
path: ${{github.workspace}}/build/Analyzers/*.so
Expand All @@ -44,7 +44,7 @@ jobs:
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
cmake --build ${{github.workspace}}/build
- name: Upload Linux build
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux
path: ${{github.workspace}}/build/Analyzers/*.so
Expand All @@ -60,7 +60,7 @@ jobs:
run: |
cd ${{github.workspace}}/artifacts
zip -r ${{github.workspace}}/all-analyzers.zip .
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: all-platforms
path: ${{github.workspace}}/artifacts/**
Expand Down

0 comments on commit dd98578

Please sign in to comment.