Skip to content

Commit

Permalink
Fix dynamic node evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
Albin Vass committed Jul 8, 2024
1 parent abf2673 commit 5fc4c38
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ jobs:

- name: Output nodes
id: nodes
run: echo "nodes=$(devenv shell get-enabled-nodes)" >> "$GITHUB_OUTPUT"
run: echo "nodes=$(devenv shell get-enabled-nodes)" 2>/dev/null | tr -d'\n' >> "$GITHUB_OUTPUT"

- run: echo "$OUTPUTS"
shell: bash
env:
OUTPUTS: ${{ toJSON(steps."Output nodes".outputs) }}

pulumi:
needs: [ pre ]
Expand Down

0 comments on commit 5fc4c38

Please sign in to comment.