Skip to content

Commit

Permalink
Modify output zip file name
Browse files Browse the repository at this point in the history
  • Loading branch information
mschilling committed Feb 17, 2020
1 parent f7a43c5 commit b555f49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Build project zip
run: |
zip -r dist ./dist/*
zip -r output ./dist/*
- name: Bump version and push tag
id: tag_release
Expand Down Expand Up @@ -56,6 +56,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist.zip
asset_name: dist.zip
asset_path: ./output.zip
asset_name: output.zip
asset_content_type: application/zip

0 comments on commit b555f49

Please sign in to comment.