Skip to content

Commit 9dac40b

Browse files
committed
update CI workflows
1 parent 2fd9511 commit 9dac40b

File tree

3 files changed

+35
-7
lines changed

3 files changed

+35
-7
lines changed

.github/workflows/phpstan.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,18 @@ jobs:
99
name: PHPStan
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313

1414
- name: Setup PHP
1515
uses: shivammathur/setup-php@v2
1616
with:
17-
php-version: 8.1
18-
17+
php-version: '8.2'
18+
coverage: none
19+
tools: phpstan
20+
1921
- name: Get composer cache directory
2022
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
2224

2325
- name: Cache dependencies
2426
uses: actions/cache@v3
@@ -31,4 +33,4 @@ jobs:
3133
run: composer install --no-interaction --no-suggest
3234

3335
- name: Run analysis
34-
run: vendor/bin/phpstan analyse
36+
run: phpstan analyse

.github/workflows/pint.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ jobs:
99
name: Laravel Pint
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313

1414
- name: Setup PHP
1515
uses: shivammathur/setup-php@v2
1616
with:
17-
php-version: '8.1'
17+
php-version: '8.2'
18+
coverage: none
1819
tools: laravel/pint
1920

2021
- name: Run analysis

.github/workflows/publish.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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'

0 commit comments

Comments
 (0)