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

18 lines
447 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
- uses: ncipollo/release-action@v1
with:
artifact: ../badnest.zip
artifactContentType: application/zip
token: ${{ secrets.GITHUB_TOKEN }}