Skip to content

Commit

Permalink
Merge pull request #18 from ApolloAutomation/AddPages
Browse files Browse the repository at this point in the history
Add Pages
  • Loading branch information
TrevorSchirmer authored Nov 9, 2024
2 parents c49644b + 3ac0396 commit 4429935
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,6 @@ jobs:
runs-on: ubuntu-latest
needs:
- build-site
- build-firmware
- build-firmware-b
if: needs.check-for-yaml.outputs.yaml_changed == 'true' && ${{ github.run_attempt == 1 }}
permissions:
contents: write
Expand Down Expand Up @@ -168,6 +166,23 @@ jobs:
echo "Uploading $filename from firmware-b directory"
gh release upload "${{ steps.create_release.outputs.upload_url }}" "$file" --clobber --repo ${{ github.repository }}
done
- uses: actions/download-artifact@v4.1.8
with:
name: firmware
path: firmware
- uses: actions/download-artifact@v4.1.8
with:
name: firmware-b
path: firmware-b

- name: Copy firmware and manifest
run: |-
mkdir -p output/firmware
cp -r firmware/${{ needs.build-firmware.outputs.version }}/* output/firmware/
- name: Copy firmware and manifest
run: |-
mkdir -p output/firmware-b
cp -r firmware-b/${{ needs.build-firmware-b.outputs.version }}/* output/firmware-b/
- uses: actions/download-artifact@v4.1.8
with:
Expand Down
2 changes: 1 addition & 1 deletion Integrations/ESPHome/Core.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
substitutions:
version: "24.11.7.12"
version: "24.11.9.1"

esp32:
board: esp32-c3-devkitm-1
Expand Down

0 comments on commit 4429935

Please sign in to comment.