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

18 lines
424 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
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 18:59:58 -05:00
args: ../badnest.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}