Skip to content

Commit

Permalink
[GH Workflow]: Use inputs.module variable for uploading artifacts.
Browse files Browse the repository at this point in the history
  • Loading branch information
arriolac committed May 2, 2024
1 parent 8ca7a5d commit da032d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-sample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: build-outputs
path: ${{ inputs.path }}/app/build/outputs
path: ${{ inputs.path }}/${{ inputs.module }}/build/outputs

- name: Upload build reports
if: always()
uses: actions/upload-artifact@v4
with:
name: build-reports
path: ${{ inputs.path }}/app/build/reports
path: ${{ inputs.path }}/${{ inputs.module }}/build/reports

1 comment on commit da032d9

@Kingzillaking
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

master

Please sign in to comment.