generated from ludeeus/integration_blueprint
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
26 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,32 @@ | ||
name: Release Workflow | ||
name: Release workflow | ||
|
||
on: | ||
release: | ||
types: [published] | ||
types: | ||
- published | ||
|
||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 📥 Checkout the repository | ||
- name: Checkout the repository | ||
uses: actions/[email protected] | ||
|
||
- name: 🔢 Get release version | ||
- name: Get release version | ||
id: version | ||
uses: home-assistant/actions/helpers/version@master | ||
|
||
- name: ℹ️ Get integration information | ||
id: information | ||
- name: Validate data | ||
run: | | ||
name=$(find custom_components/ -type d -maxdepth 1 | tail -n 1 | cut -d "/" -f2) | ||
echo "::set-output name=name::$name" | ||
- name: 👀 Validate data | ||
run: | | ||
manifestversion=$(jq -r '.version' ${{ github.workspace }}/custom_components/${{ steps.information.outputs.name }}/manifest.json) | ||
manifestversion=$(jq -r '.version' ${{ github.workspace }}/custom_components/healthchecksio/manifest.json) | ||
if [ "$manifestversion" != "${{ steps.version.outputs.version }}" ]; then | ||
echo "The version in custom_components/${{ steps.information.outputs.name }}/manifest.json was not correct" | ||
echo "The version in custom_components/healthchecksio/manifest.json was not correct" | ||
echo "$manifestversion" | ||
exit 1 | ||
fi | ||
- name: 📦 Create zip file for the integration | ||
run: | | ||
cd "${{ github.workspace }}/custom_components/${{ steps.information.outputs.name }}" | ||
zip ${{ steps.information.outputs.name }}.zip -r ./ | ||
- name: 📤 Upload the zipfile as a release asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Upload the zipfile as a release asset | ||
uses: softprops/[email protected] | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: "${{ github.workspace }}/custom_components/${{ steps.information.outputs.name }}/${{ steps.information.outputs.name }}.zip" | ||
asset_name: ${{ steps.information.outputs.name }}.zip | ||
asset_content_type: application/zip | ||
files: ${{ github.workspace }}/custom_components/healthchecksio/healthchecksio.zip |