Skip to content

Commit

Permalink
Change yaml reader
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenpapierski committed Aug 14, 2024
1 parent 0708fec commit 4dff7ad
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/action-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ jobs:
run: find output/
- name: Get release info
id: release-info
uses: jbutcher5/read-yaml@1.6
uses: action-tools/yaml[email protected]
with:
file: ${{ inputs.release-info }}
key-path: '["release-summary", "release-url"]'
- run: echo "${{ steps.release-info.outputs.data }}"
- run: echo "${{ steps.release-info.outputs.data.release-summary }}"
- run: echo "${{ steps.release-info.outputs.data.release-url }}"
file-path: ${{ inputs.release-info }}
fail-on-file-not-found: false
- run: echo "${{ steps.release-info.outputs }}"
- run: echo "${{ steps.release-info.outputs.release-summary }}"
- run: echo "${{ steps.release-info.outputs.release-url }}"
- name: Create single manifest.json and update paths
run: |
jq -s '{"name": "${{ inputs.name }}", "version": "${{ steps.esphome-build.outputs.project-version }}", "home_assistant_domain": "esphome", "new_install_improv_wait_time": 15, "builds":.}' output/*/manifest.json > output/tmp.json
Expand Down

0 comments on commit 4dff7ad

Please sign in to comment.