File tree Expand file tree Collapse file tree 3 files changed +88
-38
lines changed Expand file tree Collapse file tree 3 files changed +88
-38
lines changed Original file line number Diff line number Diff line change
1
+ name : Prepare Release
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ version :
7
+ description : Version to release
8
+ required : true
9
+ force :
10
+ description : Force a release even when there are release-blockers (optional)
11
+ required : false
12
+
13
+ jobs :
14
+ release :
15
+ runs-on : ubuntu-latest
16
+ name : Release version
17
+ steps :
18
+ - uses : actions/checkout@v2
19
+ with :
20
+ token : ${{ secrets.GH_RELEASE_PAT }}
21
+ fetch-depth : 0
22
+
23
+ - name : Prepare release
24
+ uses : getsentry/action-prepare-release@v1
25
+ env :
26
+ GITHUB_TOKEN : ${{ secrets.GH_RELEASE_PAT }}
27
+ with :
28
+ version : ${{ github.event.inputs.version }}
29
+ force : ${{ github.event.inputs.force }}
Original file line number Diff line number Diff line change
1
+ name : Continuous Integration
2
+
3
+ on :
4
+ pull_request : null
5
+ push :
6
+ branches :
7
+ - master
8
+
9
+ jobs :
10
+ tests :
11
+ name : Tests
12
+ runs-on : ubuntu-latest
13
+ env :
14
+ SYMFONY_REQUIRE : ${{ matrix.symfony-version }}
15
+ strategy :
16
+ fail-fast : false
17
+ matrix :
18
+ php :
19
+ - ' 7.2'
20
+ - ' 7.3'
21
+ - ' 7.4'
22
+ - ' 8.0'
23
+ - ' 8.1'
24
+ symfony-version :
25
+ - 3.4.*
26
+ - 4.4.*
27
+ - 5.*
28
+ - 6.*
29
+ dependencies :
30
+ - highest
31
+ include :
32
+ - php : ' 7.2'
33
+ symfony-version : 3.4.*
34
+ dependencies : lowest
35
+ - php : ' 7.2'
36
+ symfony-version : 4.4.*
37
+ dependencies : lowest
38
+ - php : ' 7.2'
39
+ symfony-version : 5.*
40
+ dependencies : lowest
41
+ - php : ' 7.2'
42
+ symfony-version : 6.*
43
+ dependencies : lowest
44
+
45
+ steps :
46
+ - name : Checkout
47
+ uses : actions/checkout@v2
48
+
49
+ - name : Setup PHP
50
+ uses : shivammathur/setup-php@v2
51
+ with :
52
+ php-version : ${{ matrix.php }}
53
+ tools : flex
54
+
55
+ - name : Install dependencies
56
+ uses : ramsey/composer-install@v1
57
+ with :
58
+ dependency-versions : ${{ matrix.dependencies }}
59
+ composer-options : --prefer-dist
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments