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

21 lines
410 B
YAML
Raw Normal View History

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 }}