Skip to content

Commit

Permalink
Fix BATCHES
Browse files Browse the repository at this point in the history
  • Loading branch information
flomnes committed Mar 1, 2022
1 parent 33bc717 commit 8c1ee85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/generate-archives.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Read study-batches.txt
id: read_batches
run: |
BATCHES=$(printf "'%s'," $(cat study-batches.txt) | sed "s/^/[/;s/,$/]/")
BATCHES=$(printf "%s," $(cat study-batches.txt) | sed "s/^/[/;s/,$/]/")
echo "::set-output name=batches::$BATCHES"
- name: Get release
Expand Down

0 comments on commit 8c1ee85

Please sign in to comment.