Skip to content

Commit

Permalink
update CI to use Godot w/Bitcoin module
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash-L2L committed Jul 29, 2024
1 parent dea3816 commit b55b3fc
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ jobs:
fail-fast: false
matrix:
build: [macos, windows, linux]
include:
- build: linux
godot-bin: 'godot.linuxbsd.editor.x86_64.mono'
- build: macos
godot-bin: 'godot.macos.editor.universal'
# Windows build runs on Ubuntu
- build: windows
godot-bin: 'godot.linuxbsd.editor.x86_64.mono'

steps:
- uses: actions/checkout@v3
Expand All @@ -24,8 +32,24 @@ jobs:
use-dotnet: false
include-templates: true

- name: Download Godot w/Bitcoin module
uses: robinraju/release-downloader@v1.11
with:
repository: LayerTwo-Labs/godot-bitcoin-module
tag: v4.2.2-bitcoin
filename: ${{ matrix.godot-bin }}

# FIXME: remove
- name: show files
run: |
ls
echo $GODOT
# FIXME: unknown binary location
- name: Verify Setup
run: |
chmod +x ${{ matrix.godot-bin }}
mv ${{ matrix.godot-bin }} ../godot
godot --version
- name: Import certificate to Keychain
Expand Down

0 comments on commit b55b3fc

Please sign in to comment.