Last active
June 21, 2023 17:28
-
-
Save tsibley/8d6dfbe7f797e3584db5f31c3f3947ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run the Nextstrain public builds | |
on: | |
workflow_dispatch: | |
inputs: | |
dockerImage: | |
description: "Specific container image to use for build (will override the default of `nextstrain build`)" | |
required: false | |
type: string | |
jobs: | |
run-build: | |
uses: nextstrain/.github/.github/workflows/pathogen-repo-build.yaml@run-build-workflow | |
with: | |
runtime: aws-batch | |
run: > | |
nextstrain build | |
--cpus 36 | |
--memory 72gib | |
--env AWS_ACCESS_KEY_ID | |
--env AWS_SECRET_ACCESS_KEY | |
. | |
all_public | |
-p --configfile profiles/nextstrain-public.yaml | |
env: | | |
NEXTSTRAIN_DOCKER_IMAGE: ${{ inputs.dockerImage }} | |
secrets: inherit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment