Skip to content

Commit

Permalink
chore: fix ids
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Dec 17, 2024
1 parent d3358fa commit 9d2a150
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ jobs:
./compilation_report.sh 1
- name: Move compilation report
id: report
id: compilation_report
shell: bash
run: |
PACKAGE_NAME=${{ matrix.project.path }}
Expand All @@ -330,8 +330,8 @@ jobs:
- name: Upload compilation report
uses: actions/upload-artifact@v4
with:
name: compilation_report_${{ steps.report.outputs.compilation_report_name }}
path: compilation_report_${{ steps.report.outputs.compilation_report_name }}.json
name: compilation_report_${{ steps.compilation_report.outputs.compilation_report_name }}
path: compilation_report_${{ steps.compilation_report.outputs.compilation_report_name }}.json
retention-days: 3
overwrite: true

Expand All @@ -343,6 +343,7 @@ jobs:
echo "$HOME/.bb/" >> $GITHUB_PATH
- name: Generate gates report
id: gates_report
working-directory: ./test-repo/${{ matrix.project.path }}
run: |
PACKAGE_NAME=${{ matrix.project.path }}
Expand All @@ -355,8 +356,8 @@ jobs:
- name: Upload gates report
uses: actions/upload-artifact@v4
with:
name: gates_report_${{ steps.report.outputs.gates_report_name }}
path: gates_report_${{ steps.report.outputs.gates_report_name }}.json
name: gates_report_${{ steps.gates_report.outputs.gates_report_name }}
path: gates_report_${{ steps.gates_report.outputs.gates_report_name }}.json
retention-days: 3
overwrite: true

Expand Down

0 comments on commit 9d2a150

Please sign in to comment.