Scripts changes & Test

This commit is contained in:
2020-01-31 23:40:30 -05:00
parent 0782209122
commit 9acd6abd7d
8 changed files with 94 additions and 9 deletions

21
.github/workflows/test_action.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Test Action
on: push
jobs:
TestAction:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: Run Action
uses: josephbmanley/build-godot-actions@${{ steps.extract_branch.outputs.branch }}
with:
name: test_project
preset: linux
projectDir: test_project
package: 'true'