File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed
Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @qwik.dev/partytown ' : minor
3+ ---
4+
5+ feat: Creates a compiled release of the lib directory.
6+
7+ This creates a compiled release of the ` lib ` directory for use by integration builders and HTML-only developers.
Original file line number Diff line number Diff line change 5959 NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
6060 NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
6161 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
62+
63+ - name : Tar and gzip the lib directory
64+ shell : bash
65+ run : tar -zcvf lib.tar lib && gzip lib.tar
66+
67+ - name : Upload release asset
68+ user : actions4gh/setup-gh@v1
69+ if : github.ref_type == 'tag'
70+ run : gh release ${{ github.ref }} upload './lib.tar.gz#Compiled lib'
71+ env :
72+ GH_REPO : ${{ github.repository }}
Original file line number Diff line number Diff line change @@ -24,3 +24,4 @@ node_modules/
2424.idea
2525.history
2626tests /integrations /load-scripts-on-main-thread /snippet.js
27+ lib.tar.gz
You can’t perform that action at this time.
0 commit comments