1
0
mirror of https://github.com/natekspencer/hacs-oasis_mini.git synced 2025-11-17 09:33:41 -05:00

Initial commit

This commit is contained in:
Nathan Spencer
2024-07-06 18:37:00 -06:00
parent 7b27fc0e8c
commit e3d8ac927b
27 changed files with 1728 additions and 0 deletions

34
.github/workflows/release.yaml vendored Normal file
View File

@@ -0,0 +1,34 @@
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