File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,20 @@ jobs:
13
13
deploy :
14
14
name : Deploy
15
15
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
16
24
steps :
17
25
- name : Checkout project repo
18
26
uses : actions/checkout@v4
19
27
with :
20
28
path : project-repo
21
- repository : navapbc/platform-test
29
+ repository : ${{ matrix.project.repo }}
22
30
token : ${{ secrets.PLATFORM_BOT_GITHUB_TOKEN }}
23
31
24
32
- name : Set up Python
37
45
38
46
- name : Update application template
39
47
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 }}
41
49
42
50
- name : Push changes to project repo
43
51
working-directory : project-repo
You can’t perform that action at this time.
0 commit comments