This action sets up the latch CLI and SDK.
Visit us at Fulcrum Genomics to learn more about how we can power your Bioinformatics with setup-latch and beyond.
Supports latch version >= 2.57.2.
Visit https://docs.latch.bio to learn more about latch.
By default, this action will setup ssh config in ~/.ssh/config for latch commands that require ssh by disabling strict host key checking (StrictHostKeyChecking No for all hosts in the ~/.ssh/config).
The action will optional add the provided latch workspace identifier and token to ~/.latch/workspace and ~/.latch/token files respectively.
This is used when registering your local workflow code to Latch (see the register* inputs).
See https://console.latch.bio/settings/developer.
Finally, the latch package is installed.
For a full list of available inputs and outputs for this action see action.yaml.
This example shows how to install the latest version of latch and echo the version installed.
jobs:
setup-latch-job:
runs-on: ubuntu-24.04
name: A job to setup latch
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- id: latch
uses: fulcrumgenomics/setup-latch@v2
- run: echo latch version ${{ steps.latch.outputs.latch-version }}
shell: bashThis example shows how to register your local workflow code to Latch.
The workspace and token are required and accept the workspace identifier and developer token respectively.
In this example, they are stored as encrypted secrets.
jobs:
setup-latch-job:
runs-on: ubuntu-24.04
name: A job to register a latch workflow
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- id: latch
uses: fulcrumgenomics/setup-latch@v2
with:
workspace: ${{ secrets.LATCH_WORKSPACE }}
token: ${{ secrets.LATCH_TOKEN }}
register: true
- run: echo latch version ${{ steps.latch.outputs.register-version }}
shell: bash- uses: fulcrumgenomics/gha-timer@v1
with:
# The version of latch to install (see https://pypi.org/project/latch/).
# Default: latest
latch-version: ''
# The path to or alias for the latch command. Otherwise, `latch` must be on the
# PATH.
# Default: latch
latch-command: ''
# Workspace id (see ~/.latch/workspace), typically numeric.
# Default:
latch-workspace: ''
# Latch token (see ~/.token). Please store this in a secret!
# Default:
latch-token: ''
# Set up the ~/.ssh directory.
# Default: true
ssh-config: ''
# Register repository workflow code to Latch. Visit docs.latch.bio to learn more.
# Default: false
register: ''
# The relative path to the root of the package to register
# Default: .
register-pkg-root: ''
# Use a remote server to build workflow.
# Default: true
register-remote: ''
# Whether to automatically bump the version of the workflow each time register is
# called.
# Default: false
register-disable-auto-version: ''
# Path to the Snakefile (for Snakemake) to register
# Default:
register-snakefile: ''
# Whether the workflow should fail if the worfklow is already registered.
# Default: false
already-registered-do-not-fail: ''
# Whether to mark the registered workflow as a release (must set `register` to
# 'true').
# Default: false
mark-as-release: ''
# Whether to skip installing the latch CLI. If true, the latch CLI must be
# available via the shell (bash).
# Default: false
skip-install: ''There are currently no outputs