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
This commit is contained in:
Agampreet Singh
2021-11-08 08:49:34 +05:30
parent 0f4b117575
commit 3835c51384
40 changed files with 15939 additions and 16 deletions

View File

@@ -11,21 +11,17 @@ jobs:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Check out Git repository
- name: Checkout code
uses: actions/checkout@v1
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 16
node-version: 17
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.github_token }}
# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
- name: Build and release with electron-builder
run: |
export GH_TOKEN=${{ secrets.GITHUB_TOKEN }}
yarn install
yarn dist
shell: bash