Skip to content

Commit 72124ff

Browse files
committed
oops
1 parent 8293883 commit 72124ff

File tree

1 file changed

+24
-15
lines changed

1 file changed

+24
-15
lines changed

Diff for: .github/workflows/release.yml

+24-15
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
jobs:
1111
export-windows:
1212
name: Windows Export
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414
container:
1515
image: barichello/godot-ci:4.3
1616
steps:
@@ -23,25 +23,28 @@ jobs:
2323
mkdir -v -p ~/.local/share/godot/export_templates/
2424
mkdir -v -p ~/.config/
2525
mv /root/.config/godot ~/.config/godot
26-
mv /root/.local/share/godot/export_templates/"$GODOT_VERSION".stable ~/.local/share/godot/export_templates/"$GODOT_VERSION".stable
26+
mv /root/.local/share/godot/export_templates/"$GODOT_VERSION".stable \
27+
~/.local/share/godot/export_templates/"$GODOT_VERSION".stable
2728
- name: Windows Build
2829
run: |
2930
mkdir -v -p build/windows
3031
EXPORT_DIR="$(readlink -f build)"
3132
cd "$PROJECT_PATH"
32-
godot --headless --verbose --export-release "Windows Desktop" "$EXPORT_DIR/windows/$EXPORT_NAME.exe"
33+
godot --headless --verbose --export-release "Windows Desktop" \
34+
"$EXPORT_DIR/windows/$EXPORT_NAME.exe"
3335
- name: Upload Artifact
3436
uses: actions/upload-artifact@v4
3537
with:
3638
name: windows
3739
path: build/windows
3840
- name: Upload to Release
3941
uses: svenstaro/upload-release-action@v2
40-
file: build/windows/*.exe
41-
file_glob: true
42+
with:
43+
file: build/windows/*.exe
44+
file_glob: true
4245
export-linux:
4346
name: Linux Export
44-
runs-on: ubuntu-20.04
47+
runs-on: ubuntu-latest
4548
container:
4649
image: barichello/godot-ci:4.3
4750
steps:
@@ -52,20 +55,23 @@ jobs:
5255
- name: Setup
5356
run: |
5457
mkdir -v -p ~/.local/share/godot/export_templates/
55-
mv /root/.local/share/godot/export_templates/"$GODOT_VERSION".stable ~/.local/share/godot/export_templates/"$GODOT_VERSION".stable
58+
mv /root/.local/share/godot/export_templates/"$GODOT_VERSION".stable \
59+
~/.local/share/godot/export_templates/"$GODOT_VERSION".stable
5660
- name: Linux Build
5761
run: |
5862
mkdir -v -p build/linux
5963
EXPORT_DIR="$(readlink -f build)"
6064
cd "$PROJECT_PATH"
61-
godot --headless --verbose --export-release "Linux/X11" "$EXPORT_DIR/linux/$EXPORT_NAME.x86_64"
65+
godot --headless --verbose --export-release "Linux/X11" \
66+
"$EXPORT_DIR/linux/$EXPORT_NAME.x86_64"
6267
- name: Upload to Release
6368
uses: svenstaro/upload-release-action@v2
64-
file: build/linux/*.x86_64
65-
file_glob: true
69+
with:
70+
file: build/linux/*.x86_64
71+
file_glob: true
6672
export-mac:
6773
name: Mac Export
68-
runs-on: ubuntu-20.04
74+
runs-on: ubuntu-latest
6975
container:
7076
image: barichello/godot-ci:4.3
7177
steps:
@@ -76,14 +82,17 @@ jobs:
7682
- name: Setup
7783
run: |
7884
mkdir -v -p ~/.local/share/godot/export_templates/
79-
mv /root/.local/share/godot/export_templates/"$GODOT_VERSION".stable ~/.local/share/godot/export_templates/"$GODOT_VERSION".stable
85+
mv /root/.local/share/godot/export_templates/"$GODOT_VERSION".stable \
86+
~/.local/share/godot/export_templates/"$GODOT_VERSION".stable
8087
- name: Mac Build
8188
run: |
8289
mkdir -v -p build/mac
8390
EXPORT_DIR="$(readlink -f build)"
8491
cd "$PROJECT_PATH"
85-
godot --headless --verbose --export-release "macOS" "$EXPORT_DIR/mac/$EXPORT_NAME.zip"
92+
godot --headless --verbose --export-release "macOS" \
93+
"$EXPORT_DIR/mac/$EXPORT_NAME.zip"
8694
- name: Upload to Release
8795
uses: svenstaro/upload-release-action@v2
88-
file: build/mac/*.zip
89-
file_glob: true
96+
with:
97+
file: build/mac/*.zip
98+
file_glob: true

0 commit comments

Comments
 (0)