mirror of
https://github.com/agam778/MS-365-Electron.git
synced 2026-02-17 09:02:10 +00:00
Update build.yml Update build.yml Update build.yml Update build.yml Update build.yml Update build.yml Update build.yml test Remove setup git token fix again trial Fix trial testing again Revert some things Hope it works now :) Update build.yml revert changes
28 lines
548 B
YAML
28 lines
548 B
YAML
name: Build/release
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Install Node.js, NPM and Yarn
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 17
|
|
|
|
- name: Build and release with electron-builder
|
|
run: |
|
|
export GH_TOKEN=${{ secrets.GITHUB_TOKEN }}
|
|
yarn install
|
|
yarn dist
|
|
shell: bash
|