|
@@ -102,14 +102,17 @@ jobs:
|
|
|
|
|
|
|
|
- name: 'Bundle self-update package'
|
|
- name: 'Bundle self-update package'
|
|
|
if: ${{ !github.event.pull_request.head.repo.fork }}
|
|
if: ${{ !github.event.pull_request.head.repo.fork }}
|
|
|
- run: |
|
|
|
|
|
- set -e
|
|
|
|
|
- for UPDATEBUNDLE in artifacts/*/
|
|
|
|
|
- do
|
|
|
|
|
- BUNDLE_NAME=`echo $UPDATEBUNDLE | cut -d'/' -f2`
|
|
|
|
|
- echo Packaging ${BUNDLE_NAME}
|
|
|
|
|
- tar czpf artifacts/flipper-z-${BUNDLE_NAME}.tgz -C artifacts ${BUNDLE_NAME}
|
|
|
|
|
- done
|
|
|
|
|
|
|
+ uses: ./.github/actions/docker
|
|
|
|
|
+ with:
|
|
|
|
|
+ run: |
|
|
|
|
|
+ set -e
|
|
|
|
|
+ for UPDATEBUNDLE in artifacts/*/
|
|
|
|
|
+ do
|
|
|
|
|
+ BUNDLE_NAME=`echo $UPDATEBUNDLE | cut -d'/' -f2`
|
|
|
|
|
+ echo Packaging ${BUNDLE_NAME}
|
|
|
|
|
+ tar czpf artifacts/flipper-z-${BUNDLE_NAME}.tgz -C artifacts ${BUNDLE_NAME}
|
|
|
|
|
+ rm -rf artifacts/${BUNDLE_NAME}
|
|
|
|
|
+ done
|
|
|
|
|
|
|
|
- name: 'Bundle resources'
|
|
- name: 'Bundle resources'
|
|
|
if: ${{ !github.event.pull_request.head.repo.fork }}
|
|
if: ${{ !github.event.pull_request.head.repo.fork }}
|