Skip to content

Commit

Permalink
0.8.86
Browse files Browse the repository at this point in the history
* fix workflow
  • Loading branch information
lumapu committed Feb 24, 2024
1 parent e2ab5da commit d4f4979
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/compile_development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/buildManifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit d4f4979

Please sign in to comment.