-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Web UI: - Fix web install selected version - Fix web install latest version Code: - Add fetch latest bin file link from Github on ESP32 Build and Development: - Move manifest.json from release to mkdocs/assets/manifest/$VERSION$/manifest.json Docs: Hardware:
- Loading branch information
Showing
8 changed files
with
82 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,4 +102,23 @@ jobs: | |
files: | | ||
bin/XZG_${{ steps.get_version.outputs.version }}.ota.bin | ||
bin/XZG_${{ steps.get_version.outputs.version }}.full.bin | ||
manifest.json | ||
- name: Checkout mkdocs branch | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: mkdocs | ||
path: mkdocs | ||
|
||
- name: Copy manifest.json to mkdocs branch | ||
run: | | ||
mkdir -p mkdocs/docs/assets/manifest/${{ steps.get_version.outputs.version }} | ||
cp manifest.json mkdocs/docs/assets/manifest/${{ steps.get_version.outputs.version }}/manifest.json | ||
- name: Commit and push manifest.json | ||
run: | | ||
cd mkdocs | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git add docs/assets/manifest/${{ steps.get_version.outputs.version }}/manifest.json | ||
git commit -m "Add manifest.json for version ${{ steps.get_version.outputs.version }}" | ||
git push origin mkdocs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// AUTO GENERATED FILE | ||
#ifndef VERSION | ||
#define VERSION "20240420" | ||
#define VERSION "20240421" | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters