-
Notifications
You must be signed in to change notification settings - Fork 41
160 lines (153 loc) Β· 6.5 KB
/
review-app.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
name: Review app on pull request
on:
pull_request_target:
types: [opened, closed, synchronize, reopened]
branches: [ main ]
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
CLEVER_SECRET: ${{ secrets.CLEVER_SECRET }}
CLEVER_TOKEN: ${{ secrets.CLEVER_TOKEN }}
ORGA_ID: ${{ secrets.ORGA_ID }}
HUGO_VERSION: ${{ secrets.HUGO_VERSION }}
jobs:
deploy:
if: github.event.action == 'opened' || github.event.action == 'reopened'
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
contents: read
environment:
name: PR review apps
#url: clever-doc-preprod-${{ env.BRANCH_NAME }}.cleverapps.io
steps:
- run: echo "π The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0
- name: Configure Git
run: |
git config user.email "[email protected]"
git config user.name "Julia"
- name: Setup SSH
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Add forked repository as remote and pull changes
if: github.event.pull_request.head.repo.fork
run: |
git remote add ${{ github.event.pull_request.user.login }} [email protected]:${{ github.event.pull_request.head.repo.full_name }}.git
git fetch ${{ github.event.pull_request.user.login }}
git checkout -b ${{ github.event.pull_request.head.ref }}-PR-${{ github.event.pull_request.number }}
git pull ${{ github.event.pull_request.user.login }} ${{ github.event.pull_request.head.ref }} --no-rebase
- run: echo "π‘ The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "π₯οΈ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "π This job's status is ${{ job.status }}."
- name: install clever-tools
run: npm install -g clever-tools
- name: Create app and configure app
run: |
clever login --token ${{ env.CLEVER_TOKEN }} --secret ${{ env.CLEVER_SECRET }}
clever create --type static-apache doc-review-${{ env.BRANCH_NAME }} --alias doc-review-${{ env.BRANCH_NAME }} --region par --org ${{secrets.ORGA_ID}}
clever env set CC_PRE_BUILD_HOOK "./clevercloud-deploy-script.sh"
clever env set CC_WEBROOT "/public"
clever env set HUGO_ENV "production"
clever env set HUGO_VERSION ${{env.HUGO_VERSION}}
clever domain add clever-doc-review-${{ env.BRANCH_NAME }}.cleverapps.io
- name: Deploy
run: clever deploy
- name: Comment PR
uses: actions/github-script@v5
with:
script: |
const issue_number = context.payload.pull_request.number;
const message = `Deployment has finished ποΈπποΈ Your app is available [here](https://clever-doc-review-${process.env.BRANCH_NAME}.cleverapps.io)`;
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issue_number,
body: message
});
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
update:
if: github.event.action == 'synchronize'
runs-on: ubuntu-latest
permissions:
issues: write
contents: read
pull-requests: write
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0
- name: Configure Git
run: |
git config user.email "[email protected]"
git config user.name "Julia"
- name: Setup SSH
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Add forked repository as remote and pull changes
if: github.event.pull_request.head.repo.fork
run: |
git remote add ${{ github.event.pull_request.user.login }} [email protected]:/${{ github.event.pull_request.head.repo.full_name }}.git
git fetch ${{ github.event.pull_request.user.login }}
git checkout ${{ github.event.pull_request.head.ref }}-PR-${{ github.event.pull_request.number }}
git pull ${{ github.event.pull_request.user.login }} ${{ github.event.pull_request.head.ref }} --no-rebase
- name: install clever-tools
run: npm install -g clever-tools
- name: Link and update app
run: |
clever link -o ${{ env.ORGA_ID }} doc-review-${{ env.BRANCH_NAME }}
clever deploy
- name: Comment PR
uses: actions/github-script@v5
with:
script: |
const issue_number = context.payload.pull_request.number;
const message = `π Your app has been updated and is available [here](https://clever-doc-review-${process.env.BRANCH_NAME}.cleverapps.io)`;
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issue_number,
body: message
});
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
delete:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
if: always() && github.event_name == 'pull_request_target' && github.event.action == 'closed'
steps:
- name: install clever-tools
run: npm install -g clever-tools
- name: Delete app
run: |
clever login --token ${{ env.CLEVER_TOKEN }} --secret ${{ env.CLEVER_SECRET }}
clever link -o ${{ env.ORGA_ID }} doc-review-${{ env.BRANCH_NAME }}
clever delete --alias doc-review-${{ env.BRANCH_NAME }} --yes
- name: Comment PR
uses: actions/github-script@v5
with:
script: |
const issue_number = context.payload.pull_request.number;
const message = `Your review app has been deleted π`;
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issue_number,
body: message
});
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}