generated from ludeeus/integration_blueprint
-
Notifications
You must be signed in to change notification settings - Fork 6
40 lines (34 loc) · 1.22 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Release
on:
release:
types: [published]
jobs:
release_zip_file:
name: Prepare release asset
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Get version
id: version
uses: home-assistant/actions/helpers/version@master
- name: "Set version number"
run: |
python3 ${{ github.workspace }}/manage/update_manifest.py --version ${{ steps.version.outputs.version }}
# Pack the stadtreinigung_hamburg dir as a zip and upload to the release
- name: ZIP stadtreinigung_hamburg Dir
run: |
cd ${{ github.workspace }}/custom_components/hass_stadtreinigung_hamburg
zip stadtreinigung_hamburg.zip -r ./
- name: Upload zip to release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ github.workspace }}/custom_components/hass_stadtreinigung_hamburg/stadtreinigung_hamburg.zip
asset_name: stadtreinigung_hamburg.zip
tag: ${{ github.ref }}
overwrite: true