Skip to content

Commit

Permalink
fix: job clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Equartey committed Aug 31, 2023
1 parent cb524c1 commit 9859703
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/flutter_vm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:

- name: Check for golden failures directory
if: "always() && steps.testJob.conclusion == 'failure'"
id: check_golden_failures
id: checkGoldenFailures
working-directory: ${{ inputs.working-directory }}
run: |
if [ -d test/ui/failures ]; then
Expand All @@ -99,9 +99,9 @@ jobs:
fi
- name: Archive golden failures
if: "always() && steps.check_golden_failures.outputs.hasFailures == 'true'"
if: "always() && steps.checkGoldenFailures.outputs.hasFailures == 'true'"
uses: actions/upload-artifact@v3
working-directory: ${{ inputs.working-directory }}
with:
name: golden-failures
path: /test/ui/failures
name: "golden failures"
path: test/ui/failures

0 comments on commit 9859703

Please sign in to comment.