Skip to content

Commit c90bd35

Browse files
committed
cd: Push to pfml-starter-kit-app repo
1 parent fc56ff8 commit c90bd35

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/cd.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,20 @@ jobs:
1313
deploy:
1414
name: Deploy
1515
runs-on: ubuntu-latest
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
project:
20+
- repo: navapbc/platform-test
21+
app: app-rails
22+
- repo: navapbc/pfml-starter-kit-app
23+
app: paidleave
1624
steps:
1725
- name: Checkout project repo
1826
uses: actions/checkout@v4
1927
with:
2028
path: project-repo
21-
repository: navapbc/platform-test
29+
repository: ${{ matrix.project.repo }}
2230
token: ${{ secrets.PLATFORM_BOT_GITHUB_TOKEN }}
2331

2432
- name: Set up Python
@@ -37,7 +45,7 @@ jobs:
3745
3846
- name: Update application template
3947
working-directory: project-repo
40-
run: nava-platform app update --template-uri ${{ github.server_url }}/${{ github.repository }} --version HEAD . app-rails
48+
run: nava-platform app update --template-uri ${{ github.server_url }}/${{ github.repository }} --version HEAD . ${{ matrix.project.app }}
4149

4250
- name: Push changes to project repo
4351
working-directory: project-repo

0 commit comments

Comments
 (0)