-
Notifications
You must be signed in to change notification settings - Fork 4
40 lines (35 loc) · 1.19 KB
/
template-only-cd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Template Deploy
on:
push:
branches:
- main
workflow_dispatch:
# Only allow one workflow at a time to prevent race conditions when pushing changes to the project repo
concurrency: template-only-cd
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout template repo
uses: actions/checkout@v3
with:
path: template-application-flask
- name: Checkout project repo
uses: actions/checkout@v3
with:
path: project-repo
repository: navapbc/platform-test-flask
token: ${{ secrets.PLATFORM_BOT_GITHUB_TOKEN }}
- name: Update application template
working-directory: project-repo
run: ../template-application-flask/template-only-bin/update-template.sh
- name: Push changes to project repo
working-directory: project-repo
run: |
git config user.name nava-platform-bot
git config user.email [email protected]
git add --all
# Commit changes (if no changes then no-op)
git diff-index --quiet HEAD || git commit -m "Template application deploy #${{ github.run_id }}"
git push