From 12d28666761eb0de81009c7bbeb71e84fcf86116 Mon Sep 17 00:00:00 2001 From: Jacob McSwain Date: Sat, 19 Oct 2019 19:04:01 -0500 Subject: [PATCH] Releases have to be in the same dir --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3cba2a4..d8058f9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,9 +9,9 @@ jobs: - name: Pull source uses: actions/checkout@v1 - name: Package up a release - run: zip -r ../badnest.zip hacs.json info.md custom_components + run: zip -r badnest.zip hacs.json info.md custom_components - uses: JasonEtco/upload-to-release@master with: - args: ../badnest.zip + args: badnest.zip env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}