Skip to content

Commit

Permalink
fixup names
Browse files Browse the repository at this point in the history
  • Loading branch information
vezenovm committed Dec 17, 2024
1 parent 8b60f58 commit af5106e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,7 @@ jobs:
PACKAGE_NAME=$(basename $artifact .json)
echo $PACKAGE_NAME
mv ./test-repo/${{ matrix.project.path }}/target/$PACKAGE_NAME.json ./compilation_artifact_${{ steps.report.outputs.compilation_report_name }}.json
echo "compilation_artifact_name=$PACKAGE_NAME" >> $GITHUB_OUTPUT
done
- name: Upload compilation report
Expand All @@ -366,8 +367,8 @@ jobs:
with:
# name: compilation_artifacts
# path: ./artifacts
name: compilation_artifact_${{ steps.report.outputs.compilation_report_name }}
path: compilation_artifact_${{ steps.report.outputs.compilation_report_name }}.json
name: compilation_artifact_${{ steps.report.outputs.compilation_artifact_name }}
path: compilation_artifact_${{ steps.report.outputs.compilation_artifact_name }}.json
retention-days: 3
overwrite: true

Expand Down Expand Up @@ -648,6 +649,8 @@ jobs:
NAME_FROM_MATRIX=${{ matrix.project.path }}
NAME_FROM_MATRIX=$(basename $NAME_FROM_MATRIX)
echo $NAME_FROM_MATRIX
NAME_FROM_MATRIX="${NAME_FROM_MATRIX//-/_}"
echo $NAME_FROM_MATRIX
for artifact in ./artifacts/*; do
echo $artifact
ARTIFACT_NAME=$(basename $artifact .json)
Expand Down

0 comments on commit af5106e

Please sign in to comment.