add require.all #52
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
name: Release | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 19 | |
cache: "pnpm" | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm build | |
- name: "asar-ify" | |
run: pnpx asar pack dist/ dist/aero.asar | |
- name: "Find Version in package.json" | |
id: version | |
run: | | |
echo "VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV | |
- name: "Create Release" | |
if: "startsWith(github.event.head_commit.message, 'release: ')" | |
run: | | |
gh release upload stable dist/aero.asar --clobber | |
gh release edit stable --title "Stable v$VERSION" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VERSION: ${{ env.VERSION }} |