-
Notifications
You must be signed in to change notification settings - Fork 41
220 lines (188 loc) · 7.44 KB
/
ps8-build-release.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
name: PrestaShop 8 - Build & Release draft
on:
pull_request:
types: [opened, reopened, synchronize, edited, labeled]
push:
tags:
- "v8.*"
branches:
- "prestashop/8.x"
env:
ZIP_NAME: ${{ github.event.repository.name }}-${{ github.ref_name }}
jobs:
current_date:
name: Get current date
runs-on: ubuntu-latest
outputs:
date: ${{ steps.date.outputs.date }}
steps:
- name: Date
id: date
run: echo "date=$(date -d '+2 hours' +'%Y-%m-%d_%H-%M-%S')" >> "$GITHUB_OUTPUT"
deploy_integration:
name: INTEGRATION - Build dependencies & create artifact
runs-on: ubuntu-latest
needs: [current_date]
permissions:
id-token: write
contents: read
pull-requests: write
if: contains(github.event.pull_request.labels.*.name, 'integration deployment')
env:
ZIP_NAME: ${{ github.event.repository.name }}-integration-pr${{ github.event.number }}-${{ needs.current_date.outputs.date }}
steps:
- name: Checkout the repository 🎁
uses: actions/checkout@v4
- name: Auth GCP
uses: ./.github/actions/auth-gcp
with:
auth-mode: "workload-federation"
provider: ${{ secrets.WI_PROVIDER_V2_INTEGRATION }}
service-account: ${{ secrets.WI_SA_V2_INTEGRATION }}
registry-login: true
setup-gcloud: true
- name: Write .env file
run: gcloud --quiet beta secrets versions access latest --project=$GCP_PROJECT --secret="module-env" > .env
env:
GCP_PROJECT: ${{ secrets.GCP_PROJECT_INTEGRATION }}
- name: Install composer dependencies
run: composer install --no-dev -o
# It's mandatory to generate the zip inside a folder named ps_checkout, to make the zip installation working on PrestaShop
- name: Generate zip
run: |
cd ../
zip -r ${{ env.ZIP_NAME }}.zip ${{ github.event.repository.name }} -x '*.git*' '*/.php_cs.*' '*/node_modules' '*/.npmrc' '*/composer.*' '*/package.*' '*/.editorconfig' '*_dev*' '*test*' '*/gha-creds-*.json'
cp ${{ env.ZIP_NAME }}.zip ${{ github.event.repository.name }}
- name: Push to GCP bucket storage
shell: bash
run: gsutil cp ${{ env.ZIP_NAME }}.zip gs://ps-eu-w1-checkout-assets-integration/zips/ps8
deploy_preproduction:
name: PREPRODUCTION - Build dependencies & create artifact
runs-on: ubuntu-latest
needs: [current_date]
permissions:
id-token: write
contents: read
pull-requests: write
if: contains(github.event.pull_request.labels.*.name, 'preproduction deployment')
env:
ZIP_NAME: ${{ github.event.repository.name }}-preproduction-pr${{ github.event.number }}-${{ needs.current_date.outputs.date }}
steps:
- name: Checkout the repository 🎁
uses: actions/checkout@v4
- name: Auth GCP
uses: ./.github/actions/auth-gcp
with:
auth-mode: "workload-federation"
provider: ${{ secrets.WI_PROVIDER_V2_PREPRODUCTION }}
service-account: ${{ secrets.WI_SA_V2_PREPRODUCTION }}
registry-login: true
setup-gcloud: true
- name: Write .env file
run: gcloud --quiet beta secrets versions access latest --project=$GCP_PROJECT --secret="module-env" > .env
env:
GCP_PROJECT: ${{ secrets.GCP_PROJECT_PREPRODUCTION }}
- name: Install composer dependencies
run: composer install --no-dev -o
# It's mandatory to generate the zip inside a folder named ps_checkout, to make the zip installation working on PrestaShop
- name: Generate zip
run: |
cd ../
zip -r ${{ env.ZIP_NAME }}.zip ${{ github.event.repository.name }} -x '*.git*' '*/.php_cs.*' '*/node_modules' '*/.npmrc' '*/composer.*' '*/package.*' '*/.editorconfig' '*_dev*' '*test*' '*/gha-creds-*.json'
cp ${{ env.ZIP_NAME }}.zip ${{ github.event.repository.name }}
- name: Push to GCP bucket storage
shell: bash
run: gsutil cp ${{ env.ZIP_NAME }}.zip gs://ps-eu-w1-checkout-assets-preproduction/zips/ps8
deploy_production:
name: PRODUCTION - Build dependencies & create artifact
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
pull-requests: write
if: startsWith(github.ref, 'refs/tags')
steps:
- name: Checkout the repository 🎁
uses: actions/checkout@v4
- name: Auth GCP
uses: ./.github/actions/auth-gcp
with:
auth-mode: "workload-federation"
provider: ${{ secrets.WI_PROVIDER_V2_PRODUCTION }}
service-account: ${{ secrets.WI_SA_V2_PRODUCTION }}
registry-login: true
setup-gcloud: true
- name: Write .env file
run: |
gcloud --quiet beta secrets versions access latest --project=$GCP_PROJECT --secret="module-env" > .env
env:
GCLOUD_PROJECT: ${{ secrets.GCLOUD_PROJECT_PRODUCTION }}
- name: Install composer dependencies
run: composer install --no-dev -o
- name: Create directory with repo name and move files
run: |
repo_name="${{ github.event.repository.name }}"
mkdir "$repo_name"
shopt -s dotglob nullglob
for file in *; do
if [ "$file" != "$repo_name" ]; then
mv "$file" "$repo_name/"
fi
done
- name: Create & upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.ZIP_NAME }}
path: .
- name: Move files at root project
run: |
cd "${{ github.event.repository.name }}"
shopt -s dotglob nullglob
for file in *; do
mv "$file" ../
done
cd ../
rm -Rf "${{ github.event.repository.name }}"
update_release_draft_production:
name: PRODUCTION - Update release draft
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
pull-requests: write
needs: [deploy_production]
if: github.event_name == 'push'
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: ${{ env.ZIP_NAME }}
- name: Release drafter
id: release_info
uses: toolmantim/release-drafter@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Prepare for Release
run: |
cd ${{ github.event.repository.name }}
zip -r ${{ env.ZIP_NAME }}.zip . -x '*.git*' '*/.php_cs.*' '*/node_modules' '*/.npmrc' '*/composer.*' '*/package.*' '*/.editorconfig' '*_dev*' '*test*' '*/gha-creds-*.json'
- name: Clean existing assets
shell: bash
run: |
curl -fsSL https://github.com/github/hub/raw/master/script/get | bash -s 2.14.1
assets=`bin/hub api -t repos/${{ github.repository }}/releases/${{ steps.release_info.outputs.id }}/assets | awk '/\].url/ { print $2 }'`
for asset in $assets
do
bin/hub api -X DELETE $asset
done
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish to GitHub Release
uses: actions/upload-release-asset@v1.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.release_info.outputs.upload_url }}
asset_path: ./${{ github.event.repository.name }}/${{ env.ZIP_NAME }}.zip
asset_name: ${{ env.ZIP_NAME }}.zip
asset_content_type: application/zip