Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: bin/${{ matrix.config }}/premake5 docs-check
- name: Upload Artifacts
if: matrix.config == 'release' && matrix.depsrc == 'contrib' && matrix.cc == 'gcc'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: premake-linux-${{ matrix.platform }}
path: bin/${{ matrix.config }}/
Expand All @@ -54,7 +54,7 @@ jobs:
run: bin/${{ matrix.config }}/premake5 docs-check
- name: Upload Artifacts
if: matrix.config == 'release'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: premake-macosx-${{ matrix.platform }}
path: bin/${{ matrix.config }}/
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
shell: cmd
- name: Upload Artifacts
if: matrix.config == 'release'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: premake-windows-${{ matrix.platform }}
path: bin\${{ matrix.config }}\
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
run: bin/${{ matrix.config }}/premake5.exe docs-check
- name: Upload Artifacts
if: matrix.config == 'release' && matrix.depsrc == 'contrib' && matrix.cc == 'mingw'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: premake-${{ matrix.msystem }}-${{ matrix.platform }}
path: bin\${{ matrix.config }}\
Expand All @@ -158,7 +158,7 @@ jobs:
run: bin/${{ matrix.config }}/premake5 docs-check
- name: Upload Artifacts
if: matrix.config == 'release'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: premake-cosmopolitan-universal
path: bin/${{ matrix.config }}/premake5
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
bin/${{ matrix.config }}/premake5 docs-check
- name: Upload Artifacts
if: matrix.config == 'release' && matrix.cc == 'clang'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: premake-freebsd-${{ matrix.platform }}
path: bin/${{ matrix.config }}/
Expand All @@ -216,7 +216,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v5
- name: Start OpenBSD VM
uses: vmactions/[email protected].0
uses: vmactions/[email protected].1
with:
usesh: true
sync: sshfs
Expand All @@ -236,7 +236,7 @@ jobs:
bin/${{ matrix.config }}/premake5 docs-check
- name: Upload Artifacts
if: matrix.config == 'release' && matrix.cc == 'clang'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: premake-openbsd-${{ matrix.platform }}
path: bin/${{ matrix.config }}/
Expand Down Expand Up @@ -269,7 +269,7 @@ jobs:
bin/${{ matrix.config }}/premake5 docs-check
- name: Upload Artifacts
if: matrix.config == 'release'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: premake-netbsd-${{ matrix.platform }}
path: bin/${{ matrix.config }}/
Expand Down Expand Up @@ -300,7 +300,7 @@ jobs:
bin/${{ matrix.config }}/premake5 docs-check
- name: Upload Artifacts
if: matrix.config == 'release' && matrix.cc == 'gcc'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: premake-dragonflybsd-${{ matrix.platform }}
path: bin/${{ matrix.config }}/
Expand Down Expand Up @@ -332,7 +332,7 @@ jobs:
bin/${{ matrix.config }}/premake5 docs-check
- name: Upload Artifacts
if: matrix.config == 'release' && matrix.cc == 'gcc'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: premake-solaris-${{ matrix.platform }}
path: bin/${{ matrix.config }}/
Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:
bin/${{ matrix.config }}/premake5 docs-check
- name: Upload Artifacts
if: matrix.config == 'release' && matrix.cc == 'gcc'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: premake-omnios-${{ matrix.platform }}
path: bin/${{ matrix.config }}/
Expand Down
Loading