From 769796f53cfb6ebaa7e0483ba322c4afa37c2c43 Mon Sep 17 00:00:00 2001 From: lumapu Date: Wed, 9 Nov 2022 22:50:33 +0100 Subject: [PATCH] fix workflow add missing file --- .github/workflows/compile_development.yml | 4 ++-- {tools/esp8266/.vscode => .vscode}/settings.json | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename {tools/esp8266/.vscode => .vscode}/settings.json (100%) diff --git a/.github/workflows/compile_development.yml b/.github/workflows/compile_development.yml index 4c14fe64..93e168c7 100644 --- a/.github/workflows/compile_development.yml +++ b/.github/workflows/compile_development.yml @@ -52,7 +52,7 @@ jobs: - name: Rename Binary files id: rename-binary-files working-directory: src - run: python ../scripts/getVersion.py >> $GITHUB_OUTPUT + run: python scripts/getVersion.py >> $GITHUB_OUTPUT - name: Set Version uses: cschleiden/replace-tokens@v1 @@ -63,7 +63,7 @@ jobs: - name: Create Manifest working-directory: src - run: python ../scripts/buildManifest.py + run: python scripts/buildManifest.py - name: Create Artifact uses: actions/upload-artifact@v3 diff --git a/tools/esp8266/.vscode/settings.json b/.vscode/settings.json similarity index 100% rename from tools/esp8266/.vscode/settings.json rename to .vscode/settings.json