Godot template repository for my programs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
name: "export"
on:
workflow_dispatch:
push:
paths:
- "**.gd"
- "**.tscn"
- "**.import"
branches:
- main
env:
GODOT_VERSION: 3.4.4
NAME: ${{ github.event.repository.name }}
jobs:
export-windows:
name: Windows Export
runs-on: ubuntu-20.04
container:
image: docker://barichello/godot-ci:3.4.4
steps:
- name: Build
uses: bend-n/godot-actions/.github/actions/export-windows@main
export-linux:
name: Linux Export
runs-on: ubuntu-20.04
container:
image: docker://barichello/godot-ci:3.4.4
steps:
- name: Build
uses: bend-n/godot-actions/.github/actions/export-linux@main
export-web:
name: Web Export
runs-on: ubuntu-20.04
container:
image: docker://barichello/godot-ci:3.4.4
steps:
- name: Build
uses: bend-n/godot-actions/.github/actions/export-web@main
export-mac:
name: Mac Export
runs-on: ubuntu-20.04
container:
image: docker://barichello/godot-ci:3.4.4
steps:
- name: Build
uses: bend-n/godot-actions/.github/actions/export-mac@main
export-android:
name: Android Export
runs-on: ubuntu-20.04
container:
image: docker://barichello/godot-ci:3.4.4
steps:
- name: Build
uses: bend-n/godot-actions/.github/actions/export-android@main
with:
android-keystore-base64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }}
android-password: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }}
push-itch:
needs:
[export-windows, export-linux, export-web, export-mac, export-android]
name: Push to itch.io
runs-on: ubuntu-20.04
steps:
- name: Check for api key
id: secret
run: echo '::set-output name=secret::${{ secrets.BUTLER_CREDENTIALS }}'
- name: Push
if: steps.secret.outputs.secret
uses: bend-n/godot-actions/.github/actions/itch-push@main
with:
api-key: ${{ secrets.BUTLER_CREDENTIALS }}
|