From d4f49792454036aa0f9f4b0f953d9eb3d565d295 Mon Sep 17 00:00:00 2001 From: lumapu Date: Sat, 24 Feb 2024 01:42:33 +0100 Subject: [PATCH] 0.8.86 * fix workflow --- .github/workflows/compile_development.yml | 6 +++--- scripts/buildManifest.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/compile_development.yml b/.github/workflows/compile_development.yml index bd6925980..3f89770c4 100644 --- a/.github/workflows/compile_development.yml +++ b/.github/workflows/compile_development.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 build-en: - name: Build Environments (English) + name: Build (English) needs: check runs-on: ubuntu-latest continue-on-error: true @@ -77,7 +77,7 @@ jobs: path: firmware/* build-de: - name: Build Environments (German) + name: Build (German) needs: check runs-on: ubuntu-latest continue-on-error: true @@ -138,7 +138,7 @@ jobs: path: firmware/* deploy: - name: Deploy Environments + name: Update Artifacts / Deploy needs: [build-en, build-de] runs-on: ubuntu-latest continue-on-error: false diff --git a/scripts/buildManifest.py b/scripts/buildManifest.py index 36e47ac02..b91145cdc 100644 --- a/scripts/buildManifest.py +++ b/scripts/buildManifest.py @@ -65,7 +65,7 @@ def buildManifest(path, infile, outfile): jsonString = json.dumps(data, indent=2) - fp = open(path + "firmware/" + outfile, "w") + fp = open(path + "../firmware/" + outfile, "w") fp.write(jsonString) fp.close()