https://github.com/bitbrain/godot-setup-action
Sets up the Godot binary inside your workflow to access.
https://github.com/bitbrain/godot-setup-action
Last synced: about 1 year ago
JSON representation
Sets up the Godot binary inside your workflow to access.
- Host: GitHub
- URL: https://github.com/bitbrain/godot-setup-action
- Owner: bitbrain
- License: mit
- Created: 2023-01-27T22:35:29.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-28T10:05:15.000Z (about 3 years ago)
- Last Synced: 2025-03-17T05:44:46.010Z (about 1 year ago)
- Language: Shell
- Size: 4.88 KB
- Stars: 16
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bitbrain/godot-setup-action@main
Downloads Godot Engine and makes the binary available to you! Visit https://downloads.tuxfamily.org/godotengine/ for all available versions and pre-releases.
**Only tested with Godot 4**
## Example usage
```
jobs:
test_action:
runs-on: ubuntu-latest
name: Test Action
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download Godot
id: setup-godot
uses: bitbrain/godot-setup-action@main
with:
version: 4.0
prerelease_version: beta16
- name: another step
shell: bash
run: ${{ steps.setup-godot.outputs.godot_binary }} --headless --quit -s test.gd
```