mirror of
https://github.com/natekspencer/hacs-oasis_mini.git
synced 2025-11-08 13:13:53 -05:00
35 lines
842 B
YAML
35 lines
842 B
YAML
name: Release
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set version number
|
|
shell: bash
|
|
run: |
|
|
yq -i -o json '.version="${{ github.event.release.tag_name }}"' \
|
|
"${{ github.workspace }}/custom_components/oasis_mini/manifest.json"
|
|
|
|
- name: ZIP integration directory
|
|
shell: bash
|
|
run: |
|
|
cd "${{ github.workspace }}/custom_components/oasis_mini"
|
|
zip oasis_mini.zip -r ./
|
|
|
|
- name: Upload ZIP file to release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: ${{ github.workspace }}/custom_components/oasis_mini/oasis_mini.zip
|