Slide 22
Slide 22 text
build
name: Build
on:
..
jobs:
check:
..
build:
strategy:
matrix:
config: [
{ target: android, os: ubuntu-latest,
..
},
{ target: apple, os: macos-latest,
..
},
{ target: windows, os: windows-latest,
..
}
{ target: linux, os: ubuntu-latest,
..
},
{ target: js, os: ubuntu-latest,
..
},
{ target: desktop, os: ubuntu-latest,
..
},
]
runs-on: ${{ matrix.config.os }}
check
release publish
▾ Matrix: build
Build android
Build apple
Build desktop
Build js
Build linux
Develop > Continuous Integration