Skip to content

v1.0.0b2

v1.0.0b2 #16

Workflow file for this run

name: Release
on:
release:
types:
- published
permissions:
contents: write
jobs:
release-zip:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Prepare release
run: |
cd ${{ github.workspace }}/custom_components/yandex_smart_home
zip -r yandex_smart_home.zip ./
- name: Upload zip
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ github.workspace }}/custom_components/yandex_smart_home/yandex_smart_home.zip
asset_name: yandex_smart_home.zip
tag: ${{ github.ref }}
overwrite: true