Skip to content

Fix secrets during build #7

Fix secrets during build

Fix secrets during build #7

Workflow file for this run

name: build dapp
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
name: Build and Push
with:

Check failure on line 12 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / build dapp

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 12, Col: 5): Unexpected value 'with'
env:
VITE_GOOGLE_CLIENT_ID: ${{ secrets.VITE_GOOGLE_CLIENT_ID }}
steps:
- name: git-checkout
uses: actions/checkout@v3
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8
run_install: true
- name: Build
run: pnpm build
- name: Push
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: build
FOLDER: dist
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MESSAGE: 'Build: ({sha}) {msg}'