Skip to content

Commit

Permalink
Document that build-dir must not end with trailing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliusroemer committed Sep 27, 2023
1 parent 07dfa04 commit f985c39
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/pathogen-repo-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ on:
The `BUILD_DIR` for `nextstrain build $BUILD_DIR`.
Example data is expected to be in `$BUILD_DIR/example_data/`
Defaults to the root of the workflow repo.
Directory string must not end in a slash.
type: string
default: ${{ github.workspace }}
required: false
Expand Down Expand Up @@ -254,8 +255,8 @@ jobs:
with:
name: ${{ inputs.artifact-name }}-${{ matrix.runtime }}
path: |
${{ inputs.build-dir }}/auspice/
${{ inputs.build-dir }}/results/
${{ inputs.build-dir }}/benchmarks/
${{ inputs.build-dir }}/logs/
${{ inputs.build-dir }}/.snakemake/log/
./${{ inputs.build-dir }}/auspice/
./${{ inputs.build-dir }}/results/
./${{ inputs.build-dir }}/benchmarks/
./${{ inputs.build-dir }}/logs/
./${{ inputs.build-dir }}/.snakemake/log/

0 comments on commit f985c39

Please sign in to comment.