1
0
mirror of https://github.com/USA-RedDragon/badnest.git synced 2025-02-12 17:07:49 +00:00
badnest/.github/workflows/release.yml

18 lines
434 B
YAML
Raw Normal View History

2019-10-19 18:53:06 -05:00
name: Release uploader
2019-10-19 18:25:41 -05:00
2019-10-19 18:53:06 -05:00
on: release
2019-10-19 18:25:41 -05:00
jobs:
2019-10-19 18:53:06 -05:00
upload_release:
2019-10-19 18:25:41 -05:00
runs-on: ubuntu-latest
steps:
2019-10-19 18:53:06 -05:00
- name: Pull source
uses: actions/checkout@v1
- name: Package up a release
2019-10-19 19:04:01 -05:00
run: zip -r badnest.zip hacs.json info.md custom_components
2019-10-19 18:59:58 -05:00
- uses: JasonEtco/upload-to-release@master
2019-10-19 18:53:06 -05:00
with:
2019-10-19 21:09:21 -05:00
args: badnest.zip application/zip
2019-10-19 18:59:58 -05:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}