Skip to content

Commit f80fa15

Browse files
committedJan 22, 2025·
🔧 Build is in lib not dist
1 parent 6ef283a commit f80fa15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
- name: Create release tarball
2828
id: create_tarball
2929
run: |
30-
tar -czvf dist/${{ github.ref_name }}.tgz dist/
30+
tar -czvf lib/${{ github.ref_name }}.tgz lib/
3131
3232
- name: Upload release asset
3333
uses: actions/upload-release-asset@v1
3434
with:
3535
upload_url: ${{ github.event.release.upload_url }}
36-
asset_path: dist/${{ github.ref_name }}.tgz
36+
asset_path: lib/${{ github.ref_name }}.tgz
3737
asset_name: ${{ github.ref_name }}.tgz
3838
asset_content_type: application/gzip

0 commit comments

Comments
 (0)
Please sign in to comment.