Better handling of read file errors #19
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| release: | |
| types: | |
| - published | |
| permissions: {} | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v6 | |
| - name: Adjust version number | |
| shell: bash | |
| run: | | |
| yq -i -o json '.version="${{ github.event.release.tag_name }}"' \ | |
| "${{ github.workspace }}/custom_components/patch/manifest.json" | |
| - name: ZIP the integration directory | |
| shell: bash | |
| run: | | |
| cd "${{ github.workspace }}/custom_components/patch" | |
| zip patch.zip -r ./ | |
| - name: Upload the ZIP file to the release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: ${{ github.workspace }}/custom_components/patch/patch.zip |