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:
34
.github/workflows/release.yaml
vendored
Normal file
34
.github/workflows/release.yaml
vendored
Normal 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
|
||||
Reference in New Issue
Block a user