21 lines
No EOL
523 B
YAML
21 lines
No EOL
523 B
YAML
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' |