diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index dd22000..722991a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -83,12 +83,27 @@ jobs: - name: Create Output Directory run: mkdir -p output + - name: Create Fimrware Directory + run: mkdir -p output/firmware-builds + - name: Download github-pages artifact uses: actions/download-artifact@v4 with: name: vitepress-docs path: output + - name: Download Doorman Stock artifact + uses: actions/download-artifact@v4 + with: + name: firmware-doorman-stock + path: output/firmware-builds/doorman-stock + + - name: Download Doorman Nuki Bridge artifact + uses: actions/download-artifact@v4 + with: + name: firmware-doorman-nui-bridge + path: output/firmware-builds/doorman-nui-bridge + - name: Upload Pages artifact uses: actions/upload-pages-artifact@v3 with: diff --git a/.github/workflows/esphome-build.yml b/.github/workflows/esphome-build.yml index 7f8b185..6e44bb8 100644 --- a/.github/workflows/esphome-build.yml +++ b/.github/workflows/esphome-build.yml @@ -69,7 +69,7 @@ jobs: publish: if: (github.event_name == 'workflow_dispatch' || github.event_name == 'push') && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/docs-test') - name: Publish new firmware + name: Upload artifacts runs-on: ubuntu-latest needs: [build] steps: