Skip to content

Commit

Permalink
Try to dump all artefacts
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidokert committed Jan 6, 2024
1 parent a40edca commit c2b7373
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,13 @@ jobs:
steps:
- name: Final collections
run: echo ${{ needs.android-arm.outputs.first_output }}
- name: Download the gold thing
uses: actions/download-artifact@v3
with:
name: buildoutput-gold
- name: Download the qa thing
uses: actions/download-artifact@v3
with:
name: buildoutput-qa
- name: Doublecheck if all is there
run: find . -type f
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -254,14 +254,14 @@ jobs:
echo "The artifacts we need to keep:" ${{ inputs.keep_artifacts }}
echo "Full spec" out/${{ matrix.platform}}-${{ matrix.config }}/${{ inputs.keep_artifacts }}
find . -name "*.apk"
ls -la out/${{ matrix.platform}}-${{ matrix.config }}/${{ inputs.keep_artifacts }}
ls -la out/${{ matrix.platform}}_${{ matrix.config }}/${{ inputs.keep_artifacts }}
echo "firstword=hello" >> $GITHUB_OUTPUT
- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
if: inputs.keep_artifacts
with:
name: buildoutput
path: out/${{ matrix.platform}}-${{ matrix.config }}/${{ inputs.keep_artifacts }}
name: buildoutput-${{ matrix.config }}
path: out/${{ matrix.platform}}_${{ matrix.config }}/${{ inputs.keep_artifacts }}
retention-days: 5
- name: Run API Leak Detector
uses: ./.github/actions/api_leak_detector
Expand Down

0 comments on commit c2b7373

Please sign in to comment.