We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ec269f commit e715500Copy full SHA for e715500
1 file changed
.github/workflows/BuildMpk.yml
@@ -55,9 +55,10 @@ jobs:
55
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 #v4
56
with:
57
name: ${{ inputs.module }}-${{ steps.bump_version.outputs.VERSION }}.mpk
58
- path: tmp/${{ inputs.module }}/**/*.mpk
+ path: ${{ inputs.module == 'mobile-resources-native' && 'tmp/mobile-resources-native/NativeMobileResources.mpk' || 'tmp/nanoflow-actions-native/NanoflowCommons.mpk' }}
59
if-no-files-found: error
60
61
- name: "Cleanup tmp folder"
62
if: ${{ always() }}
63
- run: rm -rf tmp
+ run: |
64
+ sudo rm -rf tmp || true
0 commit comments