Skip to content

Commit

Permalink
Merge pull request #96 from aras-p/ci
Browse files Browse the repository at this point in the history
CI: try to upgrade to upload-artifact@v4 since @v1 no longer works
  • Loading branch information
aras-p authored Sep 12, 2024
2 parents e9b55c1 + 4415cff commit fc7ff35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat" && msbuild.exe projects/vs2019/ClangBuildAnalyzer.sln /p:Configuration=Release /p:CL_MPCount=2
build\ClangBuildAnalyzer.exe --test tests
shell: cmd
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: ClangBuildAnalyzer-win.exe
path: build/ClangBuildAnalyzer.exe
Expand All @@ -42,7 +42,7 @@ jobs:
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j 2
cd ..
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: ClangBuildAnalyzer-mac
path: projects/xcode/build/Release/ClangBuildAnalyzer
Expand All @@ -67,7 +67,7 @@ jobs:
buildCmake/ClangBuildAnalyzer --test tests
make -f projects/make/Makefile -j 2
build/ClangBuildAnalyzer --test tests
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: ClangBuildAnalyzer-linux
path: build/ClangBuildAnalyzer
Expand Down

0 comments on commit fc7ff35

Please sign in to comment.