We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ce6365 commit 357b3f0Copy full SHA for 357b3f0
.github/workflows/generic.yml
@@ -41,13 +41,12 @@ jobs:
41
current_package: ${{ fromJson(inputs.packages) }}
42
steps:
43
- uses: actions/checkout@v4
44
- - id: debug
+ - run: echo "$OUTPUTS"
45
shell: bash
46
- run: |
47
- echo '${{needs.changes.steps.changes.outputs.django_agent}}';
48
- echo '${{needs.steps.changes.outputs.django_agent}}';
+ env:
+ OUTPUTS: ${{ toJSON(needs.changes.outputs) }}
49
- id: lint
50
- if: steps.changes.outputs.${{ matrix.current_package }} == 'true'
+ if: needs.changes.steps.changes.outputs.${{ matrix.current_package }} == 'true'
51
uses: ./.github/actions/linting
52
with:
53
python-version: ${{ matrix.python-version }}
0 commit comments