File tree 3 files changed +35
-7
lines changed
3 files changed +35
-7
lines changed Original file line number Diff line number Diff line change 9
9
name : PHPStan
10
10
11
11
steps :
12
- - uses : actions/checkout@v2
12
+ - uses : actions/checkout@v3
13
13
14
14
- name : Setup PHP
15
15
uses : shivammathur/setup-php@v2
16
16
with :
17
- php-version : 8.1
18
-
17
+ php-version : ' 8.2'
18
+ coverage : none
19
+ tools : phpstan
20
+
19
21
- name : Get composer cache directory
20
22
id : composer-cache
21
- run : echo "::set-output name= dir:: $(composer config cache-files-dir)"
23
+ run : echo "dir= $(composer config cache-files-dir)" >> $GITHUB_OUTPUT
22
24
23
25
- name : Cache dependencies
24
26
uses : actions/cache@v3
31
33
run : composer install --no-interaction --no-suggest
32
34
33
35
- name : Run analysis
34
- run : vendor/bin/ phpstan analyse
36
+ run : phpstan analyse
Original file line number Diff line number Diff line change 9
9
name : Laravel Pint
10
10
11
11
steps :
12
- - uses : actions/checkout@v2
12
+ - uses : actions/checkout@v3
13
13
14
14
- name : Setup PHP
15
15
uses : shivammathur/setup-php@v2
16
16
with :
17
- php-version : ' 8.1'
17
+ php-version : ' 8.2'
18
+ coverage : none
18
19
tools : laravel/pint
19
20
20
21
- name : Run analysis
Original file line number Diff line number Diff line change
1
+ name : Publish
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - ' **'
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v3
13
+
14
+ - name : Get latest release info
15
+ id : get-release-info
16
+ uses : release-flow/keep-a-changelog-action/get-release-info@v1
17
+ with :
18
+ release-version : latest
19
+
20
+ - name : Publish to Github releases
21
+ uses : softprops/action-gh-release@v1
22
+ with :
23
+ body : ${{ steps.get-release-info.outputs.release-notes }}
24
+ # prerelease: true
25
+ # files: '*.vsix'
You can’t perform that action at this time.
0 commit comments