From 87dbe0bcf7459473c2c2a01bdfd64c89787ee42c Mon Sep 17 00:00:00 2001 From: Jacob McSwain Date: Sat, 19 Oct 2019 18:59:58 -0500 Subject: [PATCH] Fix release creation --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 300a11d..3cba2a4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,8 +10,8 @@ jobs: 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 + - uses: JasonEtco/upload-to-release@master with: - artifact: ../badnest.zip - artifactContentType: application/zip - token: ${{ secrets.GITHUB_TOKEN }} + args: ../badnest.zip + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}