Skip to content

update token name

update token name #2

Workflow file for this run

name: Build and release electron app
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
fail-fast: false

Check failure on line 11 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Build and release electron app

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 11, Col: 20): Unexpected value 'false'
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
with:
repository: lerte/ngroker
token: ${{ secrets.GH_TOKEN }}
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node.js
uses: actions/setup-node@v3
with:
architecture: "x64"
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}