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 a1ff9b9
Showing 1 changed file with 32 additions and 5 deletions.
37 changes: 32 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,43 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: chickensoft-games/setup-godot@v1
#- uses: chickensoft-games/setup-godot@v1
#with:
#version: 4.2.1
#use-dotnet: false
#include-templates: true

- name: Download Godot w/Bitcoin module (linux / windows)
if: ${{ matrix.build == 'linux' || matrix.build == 'windows' }}
uses: robinraju/release-downloader@v1.11
with:
version: 4.2.1
use-dotnet: false
include-templates: true
repository: LayerTwo-Labs/godot-bitcoin-module
tag: v4.2.2-bitcoin
filename: 'godot.linuxbsd.editor.x86_64.mono'

- name: Verify Setup
- name: Download Godot w/Bitcoin module (macos)
if: ${{ matrix.build == 'macos' }}
uses: robinraju/release-downloader@v1.11
with:
repository: LayerTwo-Labs/godot-bitcoin-module
tag: v4.2.2-bitcoin
filename: 'godot.macos.editor.universal'

# FIXME: remove
- name: show files
run: ls

# FIXME: unknown binary location
- name: Verify Setup (linux)
if: ${{ matrix.build == 'linux' || matrix.build == 'windows' }}
run: |
godot --version
- name: Verify Setup (macos)
if: ${{ matrix.build == 'macos' }}
run: |
./godot.macos.editor.universal --version
- name: Import certificate to Keychain
if: ${{ matrix.build == 'macos' }}
run: |
Expand Down

0 comments on commit a1ff9b9

Please sign in to comment.