fix: update web version display to remove development suffix for clarity #34
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
| # Validates that this repository stays installable through HACS. | |
| # | |
| # Not required for a custom-repository install, but it catches a malformed | |
| # hacs.json, a missing repository description/topics, or the dist/ entry point | |
| # drifting out of sync with the repo name — all of which otherwise only show up | |
| # when a user tries to download the cards. | |
| # | |
| # `category: plugin` is the HACS category for dashboard cards. The ESPHome | |
| # component in components/ is not covered: HACS has no category for it. | |
| name: HACS validation | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| # HACS's own requirements change over time; a monthly run surfaces that | |
| # without waiting for the next push. | |
| - cron: "0 3 1 * *" | |
| jobs: | |
| hacs: | |
| name: HACS plugin | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: HACS validation | |
| uses: hacs/action@main | |
| with: | |
| category: plugin |