Small fixes #11
Workflow file for this run
This file contains 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] | |
jobs: | |
release: | |
name: Prepare release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
# Build | |
- name: Build the file | |
run: | | |
cd /home/runner/work/versatile-thermostat-ui-card/versatile-thermostat-ui-card | |
npm install --force | |
npm run build | |
# Upload build file to the release as an asset. | |
- name: Upload zip to release | |
uses: svenstaro/upload-release-action@v1-release | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: /home/runner/work/versatile-thermostat-ui-card/versatile-thermostat-ui-card/dist/versatile-thermostat-ui-card.js | |
asset_name: versatile-thermostat-ui-card.js | |
tag: ${{ github.ref }} | |
overwrite: true | |
- name: HACS Action | |
uses: "hacs/action@main" | |
with: | |
category: "plugin" |