Files
ms365-electron/.github/workflows/build.yml
Agampreet Singh 3835c51384 Add website files
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
2021-11-10 13:14:22 +05:30

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