Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 08c477c

Browse files
removed branch event constraint from terraform apply
1 parent 35ed531 commit 08c477c

File tree

2 files changed

+27
-27
lines changed

2 files changed

+27
-27
lines changed

.github/workflows/build-docker.yaml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,31 @@ on:
77
branches: [ main ]
88

99
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
3535

3636
build-nifi-processor:
3737
runs-on: ubuntu-latest

.github/workflows/terraform.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ jobs:
102102

103103
- name: Taint the connector instance
104104
id: taint
105-
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
105+
# if: github.ref == 'refs/heads/main' && github.event_name == 'push'
106106
run: terraform -chdir=scripts taint module.connector-deployment.kubernetes_deployment.connector-deployment
107107
continue-on-error: true
108108

109109
- name: Terraform Apply
110110
id: apply
111-
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
111+
# if: github.ref == 'refs/heads/main' && github.event_name == 'push'
112112
run: terraform -chdir=scripts apply -var "environment=dev" -var "backend_account_key=${{ secrets.TF_BACKEND_KEY }}" -auto-approve

0 commit comments

Comments
 (0)