Update the action version used and change the platform. #2
Workflow file for this run
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: Godot Builder | |
on: | |
pull_request: {} | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
Godot: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
platform: [win64] #, linux, mac] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
lfs: false | |
- name: Build | |
id: build | |
uses: manleydev/[email protected] | |
with: | |
preset: ${{ matrix.platform }} | |
debugMode: "false" | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Reia ${{ github.event.release.tag_name }} - ${{ matrix.platform }} client | |
path: ${{ github.workspace }}/${{ steps.build.outputs.build }} |