Skip to content

(package) update electron #54

(package) update electron

(package) update electron #54

Workflow file for this run

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 }}