Skip to content

chore: try to fix CI deployments #28

chore: try to fix CI deployments

chore: try to fix CI deployments #28

Workflow file for this run

name: CI and Deploy
on:
push:
branches:
- main
paths:
- 'apps/**'
- 'packages/**'
- '.github/workflows/**'
jobs:
lint:
uses: ./.github/workflows/lint.yml
with:
workflow_call: true
test:
uses: ./.github/workflows/test.yml
with:
workflow_call: true
deploy:
needs: [lint, test]
strategy:
matrix:
app: [gateway, web, websockets, workers]
uses: ./.github/workflows/deploy-app.yml

Check failure on line 28 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/ci.yml" -> "./.github/workflows/deploy-app.yml" (source branch with sha:9ac4dc1689c5dc5bdc0b204ddff2998a4ca24c27) : invalid value workflow reference: cannot specify version when calling local workflows
with:
app-name: ${{ matrix.app }}
secrets: inherit