Skip to content

Commit

Permalink
Merge pull request #14 from ApolloAutomation/V9
Browse files Browse the repository at this point in the history
Files
  • Loading branch information
TrevorSchirmer authored Nov 8, 2024
2 parents 450e165 + 04340a1 commit 38869e1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,9 @@ jobs:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout code
uses: actions/checkout@v3

- uses: actions/download-artifact@v4.1.8
with:
name: firmware
Expand All @@ -125,10 +128,7 @@ jobs:
PR_INFO=$(curl -s -H "Authorization: token $GITHUB_TOKEN" \
"https://api.github.com/repos/${{ github.repository }}/pulls?state=closed&sort=updated&direction=desc&per_page=1")
PR_BODY=$(echo "$PR_INFO" | jq -r '.[0].body')
echo "::set-output name=body::$PR_BODY"
- name: Checkout code
uses: actions/checkout@v3
echo "$PR_BODY" > pr_body.txt # Save to a file
- name: Read version from YAML file
id: read_version
Expand All @@ -144,7 +144,7 @@ jobs:
with:
tag_name: "${{ env.project_version }}"
release_name: "Firmware Release ${{ env.project_version }}"
body: "${{ steps.last_pr.outputs.body }}"
body: "$(cat pr_body.txt)"
draft: false
prerelease: false
env:
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.8"
version: "24.11.7.9"

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

0 comments on commit 38869e1

Please sign in to comment.