Skip to content

Commit

Permalink
Merge pull request #444 from nextstrain/gh-workflow-followup
Browse files Browse the repository at this point in the history
fetch-and-ingest: Explicitly test FETCH_FROM_DATABASE
  • Loading branch information
joverlee521 authored Apr 24, 2024
2 parents 34f0fc7 + 3becb52 commit 2e6424c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fetch-and-ingest-genbank-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
run: |
config="--config"
if "$FETCH_FROM_DATABASE"; then
if [[ "$FETCH_FROM_DATABASE" == true ]]; then
config+=" fetch_from_database=True"
else
config+=" fetch_from_database=False"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fetch-and-ingest-gisaid-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
run: |
config="--config"
if "$FETCH_FROM_DATABASE"; then
if [[ "$FETCH_FROM_DATABASE" == true ]]; then
config+=" fetch_from_database=True"
else
config+=" fetch_from_database=False"
Expand Down

0 comments on commit 2e6424c

Please sign in to comment.