Skip to content

Add CD using GH reusable actions. #1

Add CD using GH reusable actions.

Add CD using GH reusable actions. #1

Workflow file for this run

name: CD
on:
push:
branches:
# - connectors-dev
jobs:
detect_changes:
runs-on: ubuntu-latest
outputs:
unstructured_ingest_changed: ${{ steps.filter.outputs.unstructured_ingest }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
unstructured_ingest:
- 'unstructured_ingest/**'
ci_unstructured_ingest:
needs: detect_changes
if: ${{ needs.detect_changes.outputs.unstructured_ingest_changed == 'true' }}
uses: ./.github/workflows/cd_project.yml

Check failure on line 26 in .github/workflows/cd.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/cd.yml

Invalid workflow file

error parsing called workflow ".github/workflows/cd.yml" -> "./.github/workflows/cd_project.yml" (source branch with sha:21189c042f5924564a334b3e70c2077ddd4b3351) --> "Unstructured-IO/github-workflows/.github/workflows/setup-environment.yml@main" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
with:
work-dir: "."
secrets: inherit