We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ef283a commit f80fa15Copy full SHA for f80fa15
.github/workflows/release.yml
@@ -27,12 +27,12 @@ jobs:
27
- name: Create release tarball
28
id: create_tarball
29
run: |
30
- tar -czvf dist/${{ github.ref_name }}.tgz dist/
+ tar -czvf lib/${{ github.ref_name }}.tgz lib/
31
32
- name: Upload release asset
33
uses: actions/upload-release-asset@v1
34
with:
35
upload_url: ${{ github.event.release.upload_url }}
36
- asset_path: dist/${{ github.ref_name }}.tgz
+ asset_path: lib/${{ github.ref_name }}.tgz
37
asset_name: ${{ github.ref_name }}.tgz
38
asset_content_type: application/gzip
0 commit comments