From 802c55385f54191b270102f7360d51888a188295 Mon Sep 17 00:00:00 2001 From: Rumperuu Date: Wed, 10 Mar 2021 16:25:32 +0000 Subject: [PATCH] Fix upload paths --- .github/workflows/release-handler.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-handler.yml b/.github/workflows/release-handler.yml index 4c60eb9..dfeb6a4 100644 --- a/.github/workflows/release-handler.yml +++ b/.github/workflows/release-handler.yml @@ -29,12 +29,12 @@ jobs: uses: actions/upload-artifact@v2 with: name: footnotes - path: dist/footnotes-${{ github.event.release.tag_name }}.zip + path: footnotes-${{ github.event.release.tag_name }}.zip - name: Upload archive to release uses: JasonEtco/upload-to-release@master with: - args: dist/footnotes-${{ github.event.release.tag_name }}.zip application/zip + args: footnotes-${{ github.event.release.tag_name }}.zip application/zip env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}