-
Notifications
You must be signed in to change notification settings - Fork 30
49 lines (42 loc) · 1.55 KB
/
update-env-branches.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
41
42
43
44
45
46
47
48
49
name: Deploy the changes to the env branches
on:
push:
branches:
- master
jobs:
push-to-prod-envs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: master
fetch-depth: 0
token: ${{ secrets.SERVICE_USER_PAT }}
- name: Push to sparkle production branches
run: |
# Temporarily disable the envs deployment
git fetch origin master
# git push origin master:sparkle1
# git push origin master:sparkle2
# git push origin master:sparkle3
# git push origin master:sparkle4
# git push origin master:sparkle5
# git push origin master:sparkle6
git push origin master:sparkle7
git push origin master:sparkle8
# git push origin master:sparkle9
# git push origin master:sparkle10
# git push origin master:bigtop
# git push origin master:deloitte
git push origin master:env/demo
# git push origin master:env/northwell
# Unused envs
# git push origin master:env/memrise
# git push origin master:env/unesco
# git push origin master:env/pa
# git push origin master:env/clever
# git push origin master:env/unity
# Unused envs with custom code
# git push origin master:env/kotr # Note: This runs custom code
# git push origin master:env/github # Note: This runs custom code.
# git push origin master:env/ohbm # Note: This runs custom code.