Skip to content

Commit bae17a2

Browse files
committed
[ci]: Disable build workflow
1 parent 8993ac2 commit bae17a2

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/backend-build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
jobs:
88
build-backend:
99
name: Build
10+
if: false,
1011
timeout-minutes: 10
1112
runs-on: ubuntu-latest
1213

@@ -18,13 +19,13 @@ jobs:
1819
- name: Clone Deps Repositories
1920
uses: dbeaver/github-actions/clone-repositories@devel
2021
with:
21-
project_deps_path: "./cloudbeaver/project.deps"
22+
project_deps_path: './cloudbeaver/project.deps'
2223

2324
- name: Set up JDK 21
2425
uses: actions/setup-java@v4
2526
with:
26-
distribution: "temurin"
27-
java-version: "21"
27+
distribution: 'temurin'
28+
java-version: '21'
2829
cache: maven
2930

3031
- uses: dbeaver/github-actions/install-maven@devel

.github/workflows/frontend-build.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ on:
55
workflow_call:
66
outputs:
77
build-status:
8-
description: "Build status"
8+
description: 'Build status'
99
value: ${{ jobs.frontend-build.outputs.build-status }}
1010
test-status:
11-
description: "Test status"
11+
description: 'Test status'
1212
value: ${{ jobs.frontend-build.outputs.test-status }}
1313
inputs:
1414
clean-cache:
@@ -19,6 +19,7 @@ jobs:
1919
frontend-build:
2020
name: Build
2121
runs-on: ubuntu-latest
22+
if: false,
2223
timeout-minutes: 10
2324
permissions:
2425
contents: read
@@ -40,14 +41,14 @@ jobs:
4041
- name: Clone Deps Repositories
4142
uses: dbeaver/github-actions/clone-repositories@devel
4243
with:
43-
project_deps_path: "./cloudbeaver/project.deps"
44+
project_deps_path: './cloudbeaver/project.deps'
4445
token: ${{ secrets.DEVOPS_ISSUE_RO_TOKEN }}
4546

4647
- run: corepack enable
4748
- uses: actions/setup-node@v4
4849
with:
49-
node-version: "lts/*"
50-
cache: "yarn"
50+
node-version: 'lts/*'
51+
cache: 'yarn'
5152
cache-dependency-path: |
5253
cloudbeaver/webapp/yarn.lock
5354

0 commit comments

Comments
 (0)