upload ini from firmware build #4456
This commit is contained in:
parent
2217dcea42
commit
42fb3e2a4e
|
@ -469,6 +469,12 @@ jobs:
|
|||
name: console primary junit
|
||||
path: ./java_console/build/*.txt
|
||||
|
||||
- name: Upload 'all' .ini files
|
||||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && env.skip != 'true' }}
|
||||
working-directory: ./firmware/tunerstudio/generated
|
||||
run: |
|
||||
../upload_ini.sh all ${{ secrets.RUSEFI_ONLINE_FTP_USER }} ${{ secrets.RUSEFI_ONLINE_FTP_PASS }} ${{ secrets.RUSEFI_FTP_SERVER }}
|
||||
|
||||
- name: Upload primary bundle
|
||||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||
uses: actions/upload-artifact@v3
|
||||
|
|
|
@ -112,7 +112,7 @@ public class ControllerConnectionState {
|
|||
throw new IOException("Invalid signature response");
|
||||
String localFileName = SignatureHelper.downloadIfNotAvailable(p);
|
||||
if (localFileName == null)
|
||||
throw new IOException("Unable to download " + p.second);
|
||||
throw new IOException("Unable to download " + p.second + " from " + p.first);
|
||||
// iniFileModel.readIniFile(localFileName);
|
||||
|
||||
controllerKey = new ControllerKey(userDetails.getUserId(), sessionDetails.getControllerInfo());
|
||||
|
|
Loading…
Reference in New Issue