-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(core): cleanup memory variables leaking
- Loading branch information
1 parent
ec218b3
commit e3ae146
Showing
8 changed files
with
108 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: 'Publish a built Javascript Branch' | ||
|
||
on: | ||
push: | ||
branches: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: Build Javascript | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
cache: yarn | ||
|
||
- name: Clone ulixee/shared | ||
run: git clone https://github.com/ulixee/shared.git | ||
working-directory: ../.. | ||
|
||
- name: Install ulixee/shared | ||
run: yarn build | ||
working-directory: ../../shared | ||
|
||
- name: Clone unblocked | ||
run: git clone --recurse-submodules -j8 https://github.com/ulixee/unblocked.git | ||
working-directory: ../.. | ||
|
||
- name: Install unblocked | ||
run: yarn build | ||
working-directory: ../../unblocked | ||
|
||
- name: Build modules | ||
run: yarn && yarn build:dist --network-timeout 1000000 | ||
|
||
- name: Publish branch | ||
run: | | ||
cd build-dist | ||
git config --global user.email "staff@ulixee.org" | ||
git config --global user.name "CI" | ||
git init -b main | ||
git add -A | ||
git commit -m 'Auto-build Javascript files' | ||
git push -f https://ulixee:${{ env.GH_TOKEN }}@github.com/ulixee/hero.git main:${{ github.ref_name }}-built-js | ||
shell: bash | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters