This repository was archived by the owner on Apr 1, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +27
-27
lines changed Expand file tree Collapse file tree 2 files changed +27
-27
lines changed Original file line number Diff line number Diff line change 7
7
branches : [ main ]
8
8
9
9
jobs :
10
- build-demo :
11
- runs-on : ubuntu-latest
12
-
13
- steps :
14
- - uses : actions/checkout@v2
15
- - name : Set up JDK 11
16
- uses : actions/setup-java@v1
17
- with :
18
- java-version : ' 11'
19
-
20
- - name : Build Demo Image
21
- run : ./gradlew clean buildDemo
22
-
23
- build-azure :
24
- runs-on : ubuntu-latest
25
-
26
- steps :
27
- - uses : actions/checkout@v2
28
- - name : Set up JDK 11
29
- uses : actions/setup-java@v1
30
- with :
31
- java-version : ' 11'
32
-
33
- - name : Build Azure Image
34
- run : ./gradlew clean buildAzure
10
+ # build-demo:
11
+ # runs-on: ubuntu-latest
12
+ #
13
+ # steps:
14
+ # - uses: actions/checkout@v2
15
+ # - name: Set up JDK 11
16
+ # uses: actions/setup-java@v1
17
+ # with:
18
+ # java-version: '11'
19
+ #
20
+ # - name: Build Demo Image
21
+ # run: ./gradlew clean buildDemo
22
+ #
23
+ # build-azure:
24
+ # runs-on: ubuntu-latest
25
+ #
26
+ # steps:
27
+ # - uses: actions/checkout@v2
28
+ # - name: Set up JDK 11
29
+ # uses: actions/setup-java@v1
30
+ # with:
31
+ # java-version: '11'
32
+ #
33
+ # - name: Build Azure Image
34
+ # run: ./gradlew clean buildAzure
35
35
36
36
build-nifi-processor :
37
37
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -102,11 +102,11 @@ jobs:
102
102
103
103
- name : Taint the connector instance
104
104
id : taint
105
- if : github.ref == 'refs/heads/main' && github.event_name == 'push'
105
+ # if: github.ref == 'refs/heads/main' && github.event_name == 'push'
106
106
run : terraform -chdir=scripts taint module.connector-deployment.kubernetes_deployment.connector-deployment
107
107
continue-on-error : true
108
108
109
109
- name : Terraform Apply
110
110
id : apply
111
- if : github.ref == 'refs/heads/main' && github.event_name == 'push'
111
+ # if: github.ref == 'refs/heads/main' && github.event_name == 'push'
112
112
run : terraform -chdir=scripts apply -var "environment=dev" -var "backend_account_key=${{ secrets.TF_BACKEND_KEY }}" -auto-approve
You can’t perform that action at this time.
0 commit comments