This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
update README.md to indicate the repository's archival #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Master Build | |
on: | |
# Triggers the workflow for pushes to master | |
push: | |
branches: [master] | |
workflow_dispatch: | |
# Cancel in-progress runs if newer changes to the same branch/PR are pushed. | |
concurrency: | |
group: ci-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
# Build the game on all platforms and store build artefacts of both jobs | |
jobs: | |
meson: | |
uses: ./.github/workflows/meson.yml | |
with: | |
upload_artefacts: true | |
msbuild: | |
uses: ./.github/workflows/msbuild.yml | |
with: | |
upload_artefacts: true | |