Skip to content

Commit

Permalink
reinstate update check
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmeaton committed Jul 24, 2020
1 parent 3de043c commit f095053
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ jobs:
#------------------------------------------------------------------------#
# Commit and push the new README
- name: add and commit README
#if: steps.compile-docs.outputs.readme-update == 'true'
if: steps.compile-docs.outputs.readme-update == 'true'
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add -f docs/README.rst
git commit -m "update docs README"
- name: push README
#if: steps.compile-docs.outputs.readme-update == 'true'
if: steps.compile-docs.outputs.readme-update == 'true'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ nextflow run ktmeaton/plague-phylogeography \
--sqlite_select_command_sra "\"SELECT BioSampleAccession,SRARunAccession,SRALibraryLayout,SRAFileURL FROM Master WHERE (SRARunAccession = 'SRR1048902' OR SRARunAccession = 'SRR1048905')\"" \
--max_datasets_sra 2 \
--skip_outgroup_download \
--max_cpus 8 \
--max_memory 8.GB \
--outdir test
```

Expand Down

0 comments on commit f095053

Please sign in to comment.