Skip to content

Commit

Permalink
github build suddenly fails
Browse files Browse the repository at this point in the history
  • Loading branch information
LordOfDragons committed Dec 13, 2024
1 parent 4a8dbdd commit 41226be
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
submodules: 'recursive'
Expand All @@ -27,7 +27,7 @@ jobs:
scons
- name: Store Archives
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.artifactArchive }}
path: linux/build/launcher64
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
submodules: 'recursive'

- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1.1
uses: microsoft/setup-msbuild@v2

- name: Restore NuGet packages
working-directory: windows
Expand All @@ -29,7 +29,7 @@ jobs:
run: msbuild /m /p:Configuration=Release Launcher.sln

- name: Store Archives
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.artifactArchive }}
path: windows/x64/Release/Launcher64.exe
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_windows_direct.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
submodules: 'recursive'

- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1.1
uses: microsoft/setup-msbuild@v2

- name: Restore NuGet packages
working-directory: windows_direct
Expand All @@ -29,7 +29,7 @@ jobs:
run: msbuild /m /p:Configuration=Release windows_direct.sln

- name: Store Archives
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.artifactArchive }}
path: windows_direct/x64/Release/Launcher64.exe
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
version: ${{ github.event.client_payload.version && github.event.client_payload.version || github.event.inputs.version }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: true
submodules: 'recursive'
Expand All @@ -44,19 +44,19 @@ jobs:
sudo apt -y install build-essential scons
- name: Get Linux Archives
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: archives-linux
path: linux/build

- name: Get Windows Archives
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: archives-windows
path: windows/build

- name: Get Windows Direct Archives
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: archives-windows-direct
path: windows_direct/build
Expand Down

0 comments on commit 41226be

Please sign in to comment.