Skip to content

Commit

Permalink
Collect in earlier step, enable globstar
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Dec 13, 2023
1 parent 51889fe commit 835a84e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,20 @@ jobs:
run: |
poetry install
- name: Collect scenarios
run: |
shopt -s globstar
scenarios=scenarios/**/*.json
echo "SCENARIOS=$scenarios" >> "$GITHUB_ENV"
- name: View scenarios
run: |
poetry run packse view scenarios/**/*.json
poetry run packse view $SCENARIOS
- name: Build scenarios
run: |
poetry run packse build scenarios/**/*.json
poetry run packse build $SCENARIOS
- name: Publish scenarios
env:
Expand Down

0 comments on commit 835a84e

Please sign in to comment.