Add an actions badge to the readme and also fix the executable name. #4
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/build-godot-action@v1.5.0 | |
with: | |
name: "Reia" | |
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 }} |