Skip to content

update

update #4

Workflow file for this run

name: Deploy
on:
push:
branches:
- release
jobs:
lint-client:
uses: ./.github/workflows/lint-client.yml
deploy-client:
needs:
- lint-client
uses: ./.github/workflows/deploy-client.yml
secrets:
SSH_KEY: ${{ secrets.SSH_KEY }}
lint-server:

Check failure on line 16 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / Deploy

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 16, Col: 5): Unexpected value 'lint-server' .github/workflows/deploy.yml (Line: 18, Col: 5): Unexpected value 'deploy-server'
uses: ./.github/workflows/lint-server.yml
deploy-server:
needs:
- lint-server
- deploy-client
uses: ./.github/workflows/deploy-server.yml
secrets:
SSH_KEY: ${{ secrets.SSH_KEY }}