We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
softprops/action-gh-release@v2
1 parent 1a70998 commit bd36c19Copy full SHA for bd36c19
.github/workflows/release.yml
@@ -33,12 +33,10 @@ jobs:
33
- name: Create release tarball
34
id: create_tarball
35
run: |
36
- tar -czvf lib/${{ github.ref_name }}.tgz ${{ steps.assets.outputs.lib_files }}
+ tar -czvf ${{ github.ref_name }}.tgz ${{ steps.assets.outputs.lib_files }}
37
38
- - name: Upload release asset
39
- uses: actions/upload-release-asset@v1
+ - name: Release
+ uses: softprops/action-gh-release@v2
40
with:
41
- upload_url: ${{ github.event.release.upload_url }}
42
- asset_path: lib/${{ github.ref_name }}.tgz
43
- asset_name: ${{ github.ref_name }}.tgz
44
- asset_content_type: application/gzip
+ files: |
+ ${{ github.ref_name }}.tgz
0 commit comments