-
Notifications
You must be signed in to change notification settings - Fork 3
79 lines (62 loc) · 1.82 KB
/
multi-platform.yml
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: Build Geode Mod
permissions:
contents: write
on:
workflow_dispatch:
push:
branches:
- '**'
jobs:
build:
continue-on-error: true # continue even if build failed for some platform
strategy:
fail-fast: false
matrix:
config:
- name: Windows
os: windows-latest
- name: macOS
os: macos-latest
- name: Android64
os: ubuntu-latest
target: Android64
- name: Android32
os: ubuntu-latest
target: Android32
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
steps:
- uses: actions/checkout@v3
- name: Build the mod
uses: geode-sdk/build-geode-mod@main
with:
target: ${{ matrix.config.target }}
combine: true
upload:
name: Combine and upload builds
runs-on: ubuntu-latest
needs: ['build']
steps:
- name: "Combine builds"
uses: geode-sdk/build-geode-mod/combine@main
id: build
- name: "Upload artifact"
uses: actions/upload-artifact@v4
with:
name: Build Output
path: ${{ steps.build.outputs.build-output }}
- name: "Set up Git repository"
uses: actions/checkout@v2
- name: "Get mod properties"
id: json_properties
uses: ActionsTools/read-json-action@main
with:
file_path: "mod.json"
- name: "Release"
uses: ncipollo/release-action@v1
with:
body: "${{ steps.changelog.outputs.changelog}}"
tag: "${{steps.json_properties.outputs.version}}"
artifacts: "${{steps.build.outputs.build-output}}/*"
artifactErrorsFailBuild: true
allowUpdates: false