-
Notifications
You must be signed in to change notification settings - Fork 482
72 lines (61 loc) · 2.19 KB
/
update-api.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
name: Update API json doc
on:
schedule:
- cron: '0 1 * * *'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
update-api:
name: Update API doc json
runs-on: ubuntu-latest
strategy:
matrix:
include:
- ps_branch: develop
doc_branch: 9.x
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Checkout PrestaShop
- uses: actions/checkout@v4
name: Checkout PrestaShop repository
with:
repository: PrestaShop/PrestaShop
ref: ${{ matrix.ps_branch }}
# Now install the shop
- name: Setup Environment
timeout-minutes: 15
uses: ./.github/actions/setup-env
with:
PHP_VERSION: 8.1
ENABLE_SSL: 'true'
INSTALL_AUTO: 'true'
- name: Setup Environment failure
uses: ./.github/actions/setup-env-export-logs
with:
DOCKER_PREFIX: prestashop
ARTIFACT_NAME: setup-symfony-console-${{ matrix.app-id }}
ENABLE_SSL: 'true'
INSTALL_AUTO: 'true'
if: failure()
# Checkout Docs
- uses: actions/checkout@v4
name: Checkout Docs
with:
path: ${{ github.workspace }}/var/docs
ref: ${{ matrix.doc_branch }}
- name: Execute core command to export the JSON API doc
run: |
docker exec docs-prestashop-git-1 php -d memory_limit=-1 ./bin/console prestashop:generate:apidoc > ${{ github.workspace }}/var/docs/admin-api/swagger-doc/openapi.json
- name: Check modifications and commit if any
working-directory: ${{ github.workspace }}/var/docs
run: |
git config --global user.name 'Jarvis'
git config --global user.email '[email protected]'
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
git commit -am "Auto updated API doc json" && git push || echo "No changes to commit"