Release 0.1.16 #3
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] | |
permissions: {} | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Set version number | |
shell: bash | |
run: | | |
yq -i -o json '.version="${{ github.event.release.tag_name }}"' \ | |
"${{ github.workspace }}/custom_components/pura/manifest.json" | |
- name: ZIP integration directory | |
shell: bash | |
run: | | |
cd "${{ github.workspace }}/custom_components/pura" | |
zip pura.zip -r ./ | |
- name: Upload ZIP file to release | |
uses: softprops/[email protected] | |
with: | |
files: ${{ github.workspace }}/custom_components/pura/pura.zip |