diff options
| author | Andre Weissflog <floooh@gmail.com> | 2020-09-23 18:25:24 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2020-09-23 18:25:24 +0200 |
| commit | e6f433ab0cc957f4eda99c60b2c5aece8f83f056 (patch) | |
| tree | d815300ce800561c6b33c58cccb625af944bf826 /.github/workflows/main.yml | |
| parent | 88fb6cd5a225d978a80cdf9d2b03d8fe276e4d3a (diff) | |
add UWP github actions
Diffstat (limited to '.github/workflows/main.yml')
| -rw-r--r-- | .github/workflows/main.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c57a7790..4fd79e3a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -200,3 +200,21 @@ jobs: run: | cd workspace/sokol-samples python fips build sapp-android-make-release + uwp: + runs-on: windows-latest + steps: + - uses: actions/checkout@v1 + - name: prepare + run: | + mkdir workspace + cd workspace + git clone https://github.com/floooh/sokol-samples + cd sokol-samples + - name: sapp-uwp-vstudio-debug + run: | + cd workspace/sokol-samples + python fips build sapp-uwp-vstudio-debug + - name: sapp-uwp-vstudio-release + run: | + cd workspace/sokol-samples + python fips build sapp-uwp-vstudio-release |