Stack trace on GH pages

This commit is contained in:
iranl
2025-04-16 22:06:30 +02:00
parent 4e0e2b0646
commit a4e8784132
6 changed files with 490 additions and 3 deletions

View File

@@ -116,6 +116,7 @@ jobs:
mkdir -p resources/
mkdir -p src/
cp -vf release/*/nuki_hub_*.bin ota/beta/
cp -vf release/*/nuki_hub_*.elf ota/beta/
cp -vf master/resources/ota_manifest.py resources/ota_manifest.py
cp -vf master/src/Config.h src/Config.h
python3 resources/ota_manifest.py beta $Version

View File

@@ -139,6 +139,7 @@ jobs:
mkdir -p resources/
mkdir -p src/
cp -vf release/*/nuki_hub_*.bin ota/master/
cp -vf release/*/nuki_hub_*.elf ota/master/
cp -vf master/resources/ota_manifest.py resources/ota_manifest.py
cp -vf master/src/Config.h src/Config.h
python3 resources/ota_manifest.py master $Version

View File

@@ -129,7 +129,7 @@ jobs:
cd ../..
done
# remove last character
ARTIFACTS="${ARTIFACTS%?}"
echo "artifacts=${ARTIFACTS}" | tee -a ${GITHUB_OUTPUT}
@@ -156,13 +156,15 @@ jobs:
mkdir -p ota/master/
mkdir -p resources/
mkdir -p src/
cp -vf release/*/nuki_hub_*.bin ota/
cp -vf release/*/nuki_hub_*.bin ota/
cp -vf release/*/nuki_hub_*.elf ota/
cp -vf master/resources/ota_manifest.py resources/ota_manifest.py
cp -vf master/src/Config.h src/Config.h
python3 resources/ota_manifest.py release $Version
python3 resources/ota_manifest.py beta none
find * -not -path "ota*" -delete
rm -rf ota/beta/*.bin
rm -rf ota/beta/*.elf
rm -rf .github .gitignore .gitmodules
touch ota/beta/empty
touch ota/master/empty
@@ -189,7 +191,7 @@ jobs:
ref: master
- name: Set new version
run: |
python3 resources/next_version.py
python3 resources/next_version.py
- name: Commit config to master
uses: stefanzweifel/git-auto-commit-action@v5
with: