v0.2.2 #4
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 | |
# Lifted shamelessly from https://github.com/custom-components/grocy | |
on: | |
release: | |
types: [published] | |
permissions: {} | |
jobs: | |
release_zip_file: | |
name: Prepare and upload release asset | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
env: | |
BERMUDA_ROOT_DIR: "${{ github.workspace }}/custom_components/bermuda" | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Set release version number in files | |
run: | | |
sed -i '/VERSION.=./c\VERSION = "${{ github.ref_name }}"' "${{ env.BERMUDA_ROOT_DIR }}/const.py" | |
(jq '.version = "${{ github.ref_name }}"' "${{ env.BERMUDA_ROOT_DIR }}/manifest.json") > "${{ env.BERMUDA_ROOT_DIR }}/manifest.json.tmp" | |
mv "${{ env.BERMUDA_ROOT_DIR }}/manifest.json.tmp" "${{ env.BERMUDA_ROOT_DIR }}/manifest.json" | |
- name: Zip the integration directory | |
run: | | |
cd "${{ env.BERMUDA_ROOT_DIR }}" | |
zip bermuda.zip -r ./ | |
- name: "Upload the ZIP file to the release" | |
uses: softprops/[email protected] | |
with: | |
files: ${{ env.BERMUDA_ROOT_DIR }}/bermuda.zip |