-
Notifications
You must be signed in to change notification settings - Fork 7
36 lines (30 loc) · 930 Bytes
/
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
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
# ------------------------------------------------------------------------------------------------------------------------
release:
name: Release Pipeline
uses: ./.github/workflows/step_release.yml
needs: [ review ]
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