We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f80fa15 commit 1a70998Copy full SHA for 1a70998
.github/workflows/release.yml
@@ -24,10 +24,16 @@ jobs:
24
- name: Build package
25
run: npm run build
26
27
+ - name: Gather assets
28
+ id: assets
29
+ run: |
30
+ LIB_FILES="lib/**/*.*"
31
+ echo "::set-output name=lib_files::$LIB_FILES"
32
+
33
- name: Create release tarball
34
id: create_tarball
35
run: |
- tar -czvf lib/${{ github.ref_name }}.tgz lib/
36
+ tar -czvf lib/${{ github.ref_name }}.tgz ${{ steps.assets.outputs.lib_files }}
37
38
- name: Upload release asset
39
uses: actions/upload-release-asset@v1
0 commit comments