fix ci. Remove unused stuff from action.
add example of how to sign also. Change action path. Update README.md Update builds.yml Update builds.yml
This commit is contained in:
3
.github/actions/build/action.yml
vendored
3
.github/actions/build/action.yml
vendored
@@ -8,9 +8,6 @@ inputs:
|
||||
arch:
|
||||
required: true
|
||||
description: Target architecture.
|
||||
godot-cpp-location:
|
||||
default: 'godot-cpp'
|
||||
description: godot-cpp source code location.
|
||||
float-precision:
|
||||
default: 'single'
|
||||
description: Float precision (single or double).
|
||||
|
||||
6
.github/workflows/builds.yml
vendored
6
.github/workflows/builds.yml
vendored
@@ -115,12 +115,14 @@ jobs:
|
||||
with:
|
||||
platform: ${{ matrix.platform }}
|
||||
arch: ${{ matrix.arch }}
|
||||
godot-cpp-location: godot-cpp
|
||||
float-precision: ${{ matrix.float-precision }}
|
||||
build-target-type: template_release
|
||||
# Sign
|
||||
- name: Mac Sign
|
||||
if: ${{ matrix.platform == 'macos' }}
|
||||
# Disable sign if secrets are not set
|
||||
if: ${{ matrix.platform == 'macos' && env.APPLE_CERT_BASE64 }}
|
||||
env:
|
||||
APPLE_CERT_BASE64: ${{ secrets.APPLE_CERT_BASE64 }}
|
||||
uses: ./.github/actions/sign
|
||||
with:
|
||||
FRAMEWORK_PATH: bin/macos/macos.framework
|
||||
|
||||
Reference in New Issue
Block a user