Skip to content

Commit c1a5fd1

Browse files
Update publish workflow
1 parent a0f463a commit c1a5fd1

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

.github/workflows/publish.yml

+7-11
Original file line numberDiff line numberDiff line change
@@ -17,32 +17,28 @@ env:
1717
ITCH_USERNAME: guilhermegsousa
1818
ITCH_GAME_ID: test-game
1919

20-
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
2120
jobs:
22-
# This workflow contains a single job called "build"
2321
build:
24-
# The type of runner that the job will run on
2522
runs-on: ubuntu-latest
2623
strategy:
24+
fail-fast: true
2725
matrix:
28-
template:
29-
- web
30-
channel:
26+
platform:
3127
- html5
32-
# Steps represent a sequence of tasks that will be executed as part of the job
3328
steps:
3429
- uses: actions/checkout@v2
35-
- uses: vitorgus/setup-godot@v1
30+
- uses: chickensoft-games/setup-godot@v2.1.1
3631
with:
37-
godot-version: 4.2.2
32+
version: 4.3-beta3
33+
include-templates: true
3834
- name: Web Build
3935
run: |
4036
mkdir -v -p build/web
4137
godot -v --export "Web" ./build/web/index.html
4238
# - uses: KikimoraGames/[email protected]
4339
# with:
4440
# butlerApiKey: ${{secrets.BUTLER_API_KEY}}
45-
# gameData: ./build/${{ matrix.template }}
41+
# gameData: ./build/${{ matrix.platform }}
4642
# itchUsername: ${{env.ITCH_USERNAME}}
4743
# itchGameId: ${{ env.ITCH_GAME_ID }}
48-
# buildChannel: ${{ matrix.channel }}
44+
# buildChannel: ${{ matrix.platform }}

export_presets.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[preset.0]
22

3-
name="Web"
3+
name="html5"
44
platform="Web"
55
runnable=true
66
advanced_options=false

0 commit comments

Comments
 (0)