Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: 'recursive'

Expand All @@ -28,7 +28,7 @@ jobs:
run: dotnet publish RLBotCS -r win-x64

- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: RLBotServer-windows
path: ./**/publish/RLBotServer.exe
Expand All @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: 'recursive'

Expand All @@ -54,7 +54,7 @@ jobs:
run: dotnet publish RLBotCS -r linux-x64

- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: RLBotServer-ubuntu
path: ./**/publish/RLBotServer
Expand All @@ -68,7 +68,7 @@ jobs:
contents: write

steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
merge-multiple: "true"
- name: Publish to GitHub Releases
Expand Down