Skip to content

Commit

Permalink
⬇️ Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lmtani committed Dec 17, 2023
1 parent 04e8622 commit 4b78b67
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
if [[ -z "$changed_files_tags" ]]; then
echo "matrix=[]" >> $GITHUB_OUTPUT
else
matrix_json=$(echo "$changed_files_tags" | jq -c -M -R 'split(" ") | map({tag: .})')
matrix_json=$(echo "$changed_files_tags" | jq -c -M -R 'split(" ") | map(.)')
echo $matrix_json
echo "matrix=$matrix_json" >> $GITHUB_OUTPUT
fi
Expand All @@ -42,7 +42,8 @@ jobs:
needs: changed
strategy:
fail-fast: false
matrix: ${{fromJson(needs.changed.outputs.matrix)}}
matrix:
tag: ${{fromJson(needs.changed.outputs.matrix)}}
services:
docker:
image: docker:19.03.12
Expand Down
4 changes: 2 additions & 2 deletions tasks/quast/quast.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ version 1.0
task Quast {
input {
Array[File] contigs
Int threads = 4
File? reference
String output_dir = "./quast_output"
Int threads = 4
String extra_args = ""
File? reference
String container = "quay.io/biocontainers/quast:5.2.0--py39pl5321h4e691d4_3"
Boolean stub = false
}
Expand Down

0 comments on commit 4b78b67

Please sign in to comment.