OpenAsar/.github/workflows/release_nightly.yml

62 lines
1.6 KiB
YAML
Raw Normal View History

2021-12-10 23:19:15 +00:00
name: Release Nightly
on:
push:
2021-12-10 23:25:28 +00:00
branches: [ main ]
paths:
- 'src/**'
- 'polyfills/**'
2021-12-11 11:26:47 +00:00
- '.github/workflows/release_nightly.yml'
2021-12-10 23:19:15 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js v16.x
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: NPM Install
2021-12-11 18:21:59 +00:00
run: |
cd src
2021-12-14 19:43:49 +00:00
npm i
2021-12-11 18:21:59 +00:00
cd ..
npm i -g asar uglify-js
2021-12-10 23:19:15 +00:00
2021-12-11 11:21:34 +00:00
- name: Pack base asar
2021-12-10 23:19:15 +00:00
run: |
node scripts/strip.js
rm src/splash/_splashScreen.rewrite.js
node scripts/injectPolyfills.js
sed -i -e "s/nightly/nightly-$(git rev-parse HEAD | cut -c 1-7)/" src/index.js
2021-12-11 18:21:59 +00:00
2021-12-14 22:54:35 +00:00
npx asar pack src debug.asar
2021-12-10 23:19:15 +00:00
2021-12-14 22:54:35 +00:00
- name: Pack minified asar
run: |
npm i -g esbuild uglify-js minify-json
npx esbuild ./src --bundle --platform=node --external:electron --external:original-fs --external:auto-updater --outfile=index.js
npx uglifyjs --compress --mangle -o index.js -- index.js
cp src/package.json .
npx minify-json package.json
rm -rf src/*
cp index.js src
cp package.json src
npx asar pack src app.asar
2021-12-11 11:21:34 +00:00
- name: GitHub Release
run: |
gh release delete ${{ env.VERSION }} -y
gh release create ${{ env.VERSION }} -t "${{ env.NAME }}" -n "${{ env.BODY }}" ${{ env.FILES }}
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
VERSION: 'nightly'
NAME: 'Nightly'
2021-12-11 16:02:44 +00:00
BODY: Latest Nightly release
2021-12-14 22:54:35 +00:00
FILES: app.asar debug.asar