Skip to content

Commit

Permalink
feature: split writer to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
akurilov committed Aug 1, 2023
1 parent 9fb05e1 commit 6b1f83d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ jobs:
repository: awakari/conditions-text
token: ${{ secrets.CLONE_PAT }}

- name: clone evaluator
uses: actions/checkout@v3
with:
path: "evaluator"
repository: awakari/evaluator
token: ${{ secrets.CLONE_PAT }}

- name: clone matches
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -77,6 +84,13 @@ jobs:
repository: awakari/reader
token: ${{ secrets.CLONE_PAT }}

- name: clone resolver
uses: actions/checkout@v3
with:
path: "resolver"
repository: awakari/resolver
token: ${{ secrets.CLONE_PAT }}

- name: clone subscriptions-proxy
uses: actions/checkout@v3
with:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ jobs:
repository: awakari/conditions-text
token: ${{ secrets.CLONE_PAT }}

- name: clone evaluator
uses: actions/checkout@v3
with:
path: "evaluator"
repository: awakari/evaluator
token: ${{ secrets.CLONE_PAT }}

- name: clone matches
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -52,6 +59,13 @@ jobs:
repository: awakari/reader
token: ${{ secrets.CLONE_PAT }}

- name: clone resolver
uses: actions/checkout@v3
with:
path: "resolver"
repository: awakari/resolver
token: ${{ secrets.CLONE_PAT }}

- name: clone subscriptions-proxy
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 6b1f83d

Please sign in to comment.