Skip to content

chore: bump electron to 33, bump version to 1.0.8 #12

chore: bump electron to 33, bump version to 1.0.8

chore: bump electron to 33, bump version to 1.0.8 #12

Workflow file for this run

name: Publish Packages
on:
push:
tags:
- v*
workflow_dispatch:
jobs:
publish-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Yarn
run: yarn install
- name: Build For Linux
id: build-linux
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
yarn build:bundle
yarn release
publish-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Enable Developer Command Prompt
uses: ilammy/[email protected]
- name: Install Yarn
run: yarn install
- name: Build For Windows
id: build-windows
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
yarn build:bundle
yarn release
publish-macos:
runs-on: macos-11
steps:
- uses: actions/checkout@v3
- name: Install Yarn
run: yarn install
- name: Build For macOS
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
yarn build:bundle
yarn release