Skip to content

Separate and simplify PyDis specific usage #501

Separate and simplify PyDis specific usage

Separate and simplify PyDis specific usage #501

Workflow file for this run

name: main
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
uses: ./.github/workflows/build.yaml
lint:
uses: ./.github/workflows/lint.yaml
test:
uses: ./.github/workflows/test.yaml
needs: build
with:
artifact: ${{ needs.build.outputs.artifact }}
version: ${{ needs.build.outputs.version }}
deploy:
uses: ./.github/workflows/deploy.yaml

Check failure on line 22 in .github/workflows/main.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/main.yaml" -> "./.github/workflows/deploy.yaml" : (Line: 18, Col: 5): Unexpected value 'servicess'
if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/main' }}
needs: [build, lint, test]
with:
artifact: ${{ needs.build.outputs.artifact }}
version: ${{ needs.build.outputs.version }}
secrets:
KUBECONFIG: ${{ secrets.KUBECONFIG }}