Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 8: cannot unmarshal !!str `SECRET_...` into map[string]string
Juan Carlos Manzanero Domínguez 3b142e21b2 add env variable
2024-07-08 19:43:59 -06:00

29 lines
492 B
YAML

name: CI
on:
pull_request:
branches:
- main
env: SECRET_POCKETBASE_API_URL=${{ vars.SECRET_POCKETBASE_API_URL }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: git-checkout
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Build project
uses: pnpm/action-setup@v3
with:
version: 9
- run: pnpm install
- run: pnpm run build