v1.3.11 🏳️🌈 #45
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: | |
update_hacs_manifest: | |
name: "Prepare release asset" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Check out repository" | |
uses: "actions/checkout@v3" | |
- name: "Get version" | |
id: "version" | |
uses: "home-assistant/actions/helpers/version@master" | |
- name: "Set manifest version number" | |
run: | | |
python3 ${{ github.workspace }}/.github/update_hacs_manifest.py --version ${{ steps.version.outputs.version }} | |
- name: "Create zip" | |
run: | | |
cd custom_components/ui_lovelace_minimalist | |
zip ui_lovelace_minimalist.zip -r ./ | |
- name: "Upload zip to release" | |
uses: "svenstaro/upload-release-action@v1-release" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
file: "./custom_components/ui_lovelace_minimalist/ui_lovelace_minimalist.zip" | |
asset_name: "ui_lovelace_minimalist.zip" | |
tag: "${{ github.ref }}" | |
overwrite: true |