pass ini file (#1612)
This commit is contained in:
parent
d089d78eae
commit
9071254932
|
@ -124,7 +124,7 @@ jobs:
|
||||||
|
|
||||||
- name: Package Bundle
|
- name: Package Bundle
|
||||||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||||
run: bash misc/jenkins/compile_other_versions/prepare_bundle.sh ${{matrix.build-target}}
|
run: bash misc/jenkins/compile_other_versions/prepare_bundle.sh ${{matrix.build-target}} ${{matrix.ini-file}}
|
||||||
|
|
||||||
- name: Upload bundle
|
- name: Upload bundle
|
||||||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
BUNDLE_NAME="$1"
|
BUNDLE_NAME="$1"
|
||||||
|
export INI_FILE_OVERRIDE="$2"
|
||||||
SCRIPT_NAME="prepare_bundle.sh"
|
SCRIPT_NAME="prepare_bundle.sh"
|
||||||
echo "Entering $SCRIPT_NAME with ${BUNDLE_NAME}"
|
echo "Entering $SCRIPT_NAME with ${BUNDLE_NAME}"
|
||||||
echo "RUSEFI_BUILD_FTP_USER=$RUSEFI_BUILD_FTP_USER"
|
echo "RUSEFI_BUILD_FTP_USER=$RUSEFI_BUILD_FTP_USER"
|
||||||
|
|
Loading…
Reference in New Issue