We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 955a133 commit 5e21291Copy full SHA for 5e21291
.github/.gitignore
.github/workflows/build-release.yaml
@@ -0,0 +1,34 @@
1
+name: build-release
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ -
7
+jobs:
8
+ build:
9
+ runs-on:
10
+ - fireactions-c2-m4
11
+
12
+ steps:
13
+ - name: Repo checkout
14
+ uses: actions/checkout@v4
15
16
+ - name: Composer install
17
+ uses: php-actions/composer@v6
18
19
+ - name: PHPStan check
20
+ uses: php-actions/phpstan@v3
21
+ with:
22
+ path: src/
23
24
+ - name: Bump version and push tag
25
+ id: bump
26
+ uses: hennejg/github-tag-action@v4.3.1
27
28
+ github_token: ${{ secrets.GITHUB_TOKEN }}
29
+ release_branches: main
30
31
+ - uses: ncipollo/release-action@v1
32
33
+ tag: ${{ steps.bump.outputs.new_tag }}
34
+ generateReleaseNotes: true
0 commit comments