Merge pull request #28 from SpectrumPro/dev #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: Build Godot Project | |
on: | |
push: {} | |
pull_request: {} | |
jobs: | |
Godot: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
platform: [win64, linux/X11, macOS] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
lfs: true | |
- name: Build | |
id: build | |
uses: manleydev/build-godot-action@v1.4.1 | |
with: | |
name: Spectrum | |
preset: ${{ matrix.platform }} | |
debugMode: "false" | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Spectrum - ${{ matrix.platform }} | |
path: ${{ github.workspace }}/${{ steps.build.outputs.build }} |