Merge pull request #12791 from Chia-Network/checkpoint/long_lived_atari_from_main_9a4316f96eeb92a06d5ceaf94387d349c5ea9537

This commit is contained in:
Kyle Altendorf 2022-08-04 10:19:54 -07:00 committed by GitHub
commit 328dedd773
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,10 @@ inputs:
description: "Install development dependencies."
required: false
default: ""
automated:
description: "Automated install, no questions."
required: false
default: "true"
command-prefix:
description: "Text to place before the command such as `arch -arm64` for non-native macOS runners."
required: false
@ -25,7 +29,7 @@ runs:
env:
INSTALL_PYTHON_VERSION: ${{ inputs.python-version }}
run: |
${{ inputs.command-prefix }} sh install.sh ${{ inputs.development && '-d' || '' }}
${{ inputs.command-prefix }} sh install.sh ${{ inputs.development && '-d' || '' }} ${{ inputs.automated == 'true' && '-a' || '' }}
- name: Run install script (Windows)
if: runner.os == 'windows'