2019-10-19 18:30:31 -05:00
|
|
|
name: Releases
|
2019-10-19 18:25:41 -05:00
|
|
|
|
2019-10-19 18:30:31 -05:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- '*'
|
2019-10-19 18:25:41 -05:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
2019-10-19 18:30:31 -05:00
|
|
|
build:
|
2019-10-19 18:25:41 -05:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Package up a release
|
|
|
|
run: zip -r ../badnest.zip hacs.json info.md custom_components
|
2019-10-19 18:30:31 -05:00
|
|
|
- uses: ncipollo/release-action@v1
|
2019-10-19 18:25:41 -05:00
|
|
|
with:
|
2019-10-19 18:30:31 -05:00
|
|
|
artifact: ../badnest.zip
|
|
|
|
artifactContentType: application/zip
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|