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
…1388)

Looks like there was a regression introduced - Jetcaster artifacts were
not uplaoded on successful builds. See:
https://github.com/android/compose-samples/actions/runs/8926918741

Workflow run with this change:
https://github.com/android/compose-samples/actions/runs/8927043650
  • Loading branch information
arriolac authored May 2, 2024
2 parents 3669144 + da032d9 commit f2c088c
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

0 comments on commit f2c088c

Please sign in to comment.