Skip to content

Commit ebed851

Browse files
committed
chore(ci-build): remove [ci skip] check
1 parent e73d018 commit ebed851

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,33 +19,29 @@ jobs:
1919
- name: checkout repository
2020
uses: actions/checkout@v3.5.3
2121
- name: validate gradle wrapper
22-
if: ${{ !startsWith(github.event.head_commit.message, '[ci skip]') }}
2322
uses: gradle/wrapper-validation-action@v1.0.6
2423
- name: setup jdk ${{ matrix.java }}
25-
if: ${{ !startsWith(github.event.head_commit.message, '[ci skip]') }}
2624
uses: actions/setup-java@v3.4.1
2725
with:
2826
java-version: ${{ matrix.java }}
2927
distribution: 'adopt'
3028
java-package: jdk
3129
- name: make gradle wrapper executable
32-
if: ${{ runner.os != 'Windows' && !startsWith(github.event.head_commit.message, '[ci skip]') }}
30+
if: ${{ runner.os != 'Windows' }}
3331
run: chmod +x ./gradlew
3432

3533
- name: build
36-
if: ${{ !startsWith(github.event.head_commit.message, '[ci skip]') }}
3734
run: ./gradlew build
3835

3936
- name: collect artifacts to out folder
40-
if: ${{ !startsWith(github.event.head_commit.message, '[ci skip]') }}
4137
run: |
4238
mkdir out
4339
mv ./versions/1.17.1/build/libs/* ./out
4440
mv ./versions/1.18.2/build/libs/* ./out
4541
mv ./versions/1.19.3/build/libs/* ./out
4642
mv ./versions/1.20.1/build/libs/* ./out
4743
- name: capture build artifacts
48-
if: ${{ runner.os == 'Linux' && matrix.java == '17' && !startsWith(github.event.head_commit.message, '[ci skip]') }}
44+
if: ${{ runner.os == 'Linux' && matrix.java == '17' }}
4945
uses: actions/upload-artifact@v3.1.2
5046
with:
5147
name: Artifacts

0 commit comments

Comments
 (0)