Skip to content

Commit 3998702

Browse files
committed
fix action
1 parent 6f521d5 commit 3998702

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/workflows/build-debug.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@v4
1616

1717
- name: Checkout submodules
18-
run: git submodule update --init --recursive --remote --force
18+
run: git submodule update --init --recursive --force
1919

2020
- name: Setup Java
2121
uses: actions/setup-java@v4

.github/workflows/build-pre-release.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
name: Build Pre-Release
22
on:
33
workflow_dispatch:
4-
pull_request:
5-
branches: [main]
6-
types: [closed]
4+
push:
5+
branches:
6+
- main
77

88
jobs:
99
BuildPreRelease:
10-
if: github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true
1110
runs-on: ubuntu-latest
1211
steps:
1312
- name: Checkout Repository
1413
uses: actions/checkout@v4
1514

1615
- name: Checkout submodules
17-
run: git submodule update --init --recursive --remote --force
16+
run: git submodule update --init --recursive --force
1817

1918
- name: Setup Java
2019
uses: actions/setup-java@v4

.github/workflows/build-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth: 0
1818

1919
- name: Checkout submodules
20-
run: git submodule update --init --recursive --remote
20+
run: git submodule update --init --recursive --force
2121

2222
- name: Setup Java
2323
uses: actions/setup-java@v4

.github/workflows/update-dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Checkout Repository
1313
uses: actions/checkout@v4
1414

15-
- name: Checkout submodules
15+
- name: Checkout and Update submodules
1616
run: git submodule update --init --recursive --remote --force
1717

1818
- name: Setup Java

0 commit comments

Comments
 (0)