Merge pull request #95 from klejejs/task/refactor-operational-statuse… #1
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: Package assets | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
build: | |
name: Publish binaries | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Zip release assets | |
run: zip -r thermia.zip custom_components | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: thermia.zip | |
asset_name: thermia.zip | |
tag: ${{ github.ref }} | |
overwrite: true |