Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/funny-monkeys-grin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@qwik.dev/partytown': minor
---

feat: Creates a compiled release of the lib directory.

This creates a compiled release of the `lib` directory for use by integration builders and HTML-only developers.
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,14 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Tar and gzip the lib directory
shell: bash
run: tar -zcvf lib.tar lib && gzip lib.tar

- name: Upload release asset
user: actions4gh/setup-gh@v1
if: github.ref_type == 'tag'
run : gh release ${{ github.ref }} upload './lib.tar.gz#Compiled lib'
env:
GH_REPO: ${{ github.repository }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ node_modules/
.idea
.history
tests/integrations/load-scripts-on-main-thread/snippet.js
lib.tar.gz
Loading