Skip to content

feat: add schema option to modal and accordian #112

feat: add schema option to modal and accordian

feat: add schema option to modal and accordian #112

Workflow file for this run

name: Build and Deploy Client Service
on:
push:
paths:
- 'client/**'
pull_request:
paths:
- 'client/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout client service
uses: actions/checkout@v2
- name: Install dependencies
working-directory: client
run: npm ci
- name: Build client
working-directory: client
run: npm run build
- uses: actions/upload-artifact@v3
with:
name: built-site
path: dist
deploy:
runs-on: ubuntu-latest
if: >

Check failure on line 31 in .github/workflows/deploy-client.yml

View workflow run for this annotation

GitHub Actions / Build and Deploy Client Service

Invalid workflow file

The workflow is not valid. .github/workflows/deploy-client.yml (Line: 31, Col: 9): Unrecognized named-value: 'secrets'. Located at position 36 within expression: github.ref == 'refs/heads/main' && secrets.DEPLOY_SSH_KEY && secrets.DEPLOY_HOST_DNS && secrets.DEPLOY_USERNAME && secrets.DEPLOY_TARGET_DIR
github.ref == 'refs/heads/main' &&
secrets.DEPLOY_SSH_KEY &&
secrets.DEPLOY_HOST_DNS &&
secrets.DEPLOY_USERNAME &&
secrets.DEPLOY_TARGET_DIR
needs: [build]
steps:
- uses: actions/download-artifact@v3
with:
name: built-site
- uses: easingthemes/ssh-deploy@main
env:
ARGS: -rlgoDzvc -i --delete
SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_SSH_KEY }}
REMOTE_HOST: ${{ secrets.DEPLOY_HOST_DNS }}
REMOTE_USER: ${{ secrets.DEPLOY_USERNAME }}
TARGET: ${{ secrets.DEPLOY_TARGET_DIR }}