Skip to content

Commit 9329dd8

Browse files
committed
Update GitHub Actions
1 parent c9bcd69 commit 9329dd8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/nuget.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
path: CSFML
8080

8181
- name: Build in an ARM container
82-
uses: uraimo/run-on-arch-action@v2.7.2
82+
uses: uraimo/run-on-arch-action@v2.8.1
8383
with:
8484
arch: armv7
8585
distro: ubuntu22.04
@@ -111,7 +111,7 @@ jobs:
111111
path: CSFML
112112

113113
- name: Build in an ARM64 container
114-
uses: uraimo/run-on-arch-action@v2.7.2
114+
uses: uraimo/run-on-arch-action@v2.8.1
115115
with:
116116
arch: aarch64
117117
distro: ubuntu22.04

tools/nuget/build.linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ echo "Please note that all SFML dependencies must be installed and available to
4242

4343
RID="$1"
4444

45-
SFMLBranch="master" # The branch or tag of the SFML repository to be cloned
45+
SFMLBranch="3.0.0" # The branch or tag of the SFML repository to be cloned
4646
CSFMLDir="$(realpath ../../)" # The directory of the source code of CSFML
4747

4848
OutDir="./CSFML/runtimes/$RID/native" # The base directory of all CSFML modules, used to copy the final libraries

tools/nuget/build.macos.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ echo "Please note that all SFML dependencies must be installed and available to
4646

4747
RID="$1"
4848

49-
SFMLBranch="master" # The branch or tag of the SFML repository to be cloned
49+
SFMLBranch="3.0.0" # The branch or tag of the SFML repository to be cloned
5050
CSFMLDir="$(grealpath "$(git rev-parse --show-toplevel)")" # The directory of the source code of CSFML
5151

5252
OutDir="./CSFML/runtimes/$RID/native" # The base directory of all CSFML modules, used to copy the final libraries

tools/nuget/build.win.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Write-Output "Building $RID"
3535
Write-Output "Using $Generator as the cmake generator"
3636
Write-Output "Using architecture $Architecture"
3737

38-
$SFMLBranch = "master" # The branch or tag of the SFML repository to be cloned
38+
$SFMLBranch = "3.0.0" # The branch or tag of the SFML repository to be cloned
3939
$CSFMLDir = (Get-Item (git rev-parse --show-toplevel)).FullName # The directory of the source code of CSFML
4040

4141
$OutDir = "./CSFML/runtimes/$RID/native" # The directory of all CSFML modules, used to copy the final dlls

0 commit comments

Comments
 (0)