mirror of
https://github.com/yeslayla/build-godot-action.git
synced 2025-07-04 03:25:03 +02:00
Update entrypoint.sh (#22)
* Update entrypoint.sh * Update entrypoint.sh * modified to support proper requirements for godot-ci project * Modified for testing * added a copy of the action for testing * test * added ls * added ls debug * modified ls debug * Last push fixes the issue with not building, both build tests work * Modified it so we showcase Support for Testing 3.x and 4.x Godot Projects * Modified the Github Action names to properly reflect the tests
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
name: Test Action
|
||||
name: Test Action 3.x
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
@ -13,5 +13,5 @@ jobs:
|
||||
with:
|
||||
name: test_project
|
||||
preset: linux
|
||||
projectDir: test_project
|
||||
projectDir: 3.x_test_project
|
||||
package: 'true'
|
18
.github/workflows/test_action_4.x.yml
vendored
Normal file
18
.github/workflows/test_action_4.x.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
name: Test Action 4.x
|
||||
on:
|
||||
push:
|
||||
branches: [ 'master', 'main', 'prod', 'production' ]
|
||||
|
||||
jobs:
|
||||
TestAction:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
- name: Run Action
|
||||
uses: ./
|
||||
with:
|
||||
name: test_project
|
||||
preset: linux
|
||||
projectDir: 4.x_test_project
|
||||
package: 'true'
|
Reference in New Issue
Block a user