-
Notifications
You must be signed in to change notification settings - Fork 7
53 lines (45 loc) · 1.44 KB
/
ci_pipe.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
name: CI Pipeline
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- '.github/**'
- '**.md'
- 'makefile'
jobs:
# ------------------------------------------------------------------------------------------------------------------------
review:
name: Review Pipeline
uses: ./.github/workflows/step_review.yml
with:
PHP_VERSION: 8.2
# ------------------------------------------------------------------------------------------------------------------------
checks:
name: Release Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# -----------------------------------
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
# -----------------------------------
- name: Check XSD for release version
run: |
php tests/scripts/check_xsd.php dev-main
# ------------------------------------------------------------------------------------------------------------------------
release:
name: Release Pipeline
uses: ./.github/workflows/step_release.yml
needs: [ review, checks ]
secrets:
DOCKER_USERNAME: "${{ secrets.DOCKER_USERNAME }}"
DOCKER_PASSWORD: "${{ secrets.DOCKER_PASSWORD }}"
PACKAGIST_USER: "${{ secrets.PACKAGIST_USER }}"
PACKAGIST_TOKEN: "${{ secrets.PACKAGIST_TOKEN }}"
with:
VERSION: "dev-main"
PHP_VERSION: 8.2