Fix upload paths
This commit is contained in:
parent
6510328549
commit
802c55385f
1 changed files with 2 additions and 2 deletions
4
.github/workflows/release-handler.yml
vendored
4
.github/workflows/release-handler.yml
vendored
|
@ -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 }}
|
||||
|
||||
|
|
Reference in a new issue