Skip to content

Commit

Permalink
Fix deploy workflow - 10
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Saporetti Junior committed Oct 9, 2023
1 parent 8da169d commit f92380e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pypi-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@ jobs:
# Add closing brackets
JSON="$JSON]}"
echo "matrix=$( echo "$JSON" )" >> $GITHUB_OUTPUT
echo "modules=$( echo "$selected" )" >> $GITHUB_OUTPUT
echo "modules=$( echo "${selected[*]}" )" >> $GITHUB_OUTPUT
deploy:
if: false
needs: set-env-matrix
strategy:
fail-fast: false
matrix: ${{ needs.set-env-matrix.outputs.selected }}
matrix: ${{ fromJson(needs.set-env-matrix.outputs.matrix) }}
runs-on: ubuntu-latest
environment: ${{ inputs.pypi_env }}
env:
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
steps:
- name: Update patch number
run: |
for m in ${{ fromJson(needs.set-env-matrix.outputs.matrix.module) }}
for m in ${{ needs.set-env-matrix.outputs.matrix.modules }}
echo "Module: $m"
done
Expand Down

0 comments on commit f92380e

Please sign in to comment.