1
0
mirror of https://github.com/USA-RedDragon/badnest.git synced 2024-10-06 01:20:49 +01:00
badnest/.github/workflows/release.yml
2019-10-19 18:25:41 -05:00

20 lines
414 B
YAML

name: Release zip
on: release
jobs:
build:
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
- name: Run a multi-line script
uses: JasonEtco/upload-to-release@master
with:
args: ../badnest.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}