Skip to content

Commit 1a11aa1

Browse files
committed
Fixing filter and removing for GRPC atm
Signed-off-by: Laurent Broudoux <[email protected]>
1 parent 1afa491 commit 1a11aa1

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/build-package.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,22 @@ jobs:
2929
- 'grpc-hello-world-demo/**'
3030
3131
- name: Set up QEMU
32-
if: github.repository_owner == 'microcks' && steps.changes.outputs.grpc-hello-world == 'true'
32+
#if: github.repository_owner == 'microcks' && steps.changes.outputs.grpc-hello-world == 'true'
3333
uses: docker/setup-qemu-action@v2
3434

3535
- name: Set up Docker Buildx
36-
if: github.repository_owner == 'microcks' && steps.changes.outputs.grpc-hello-world == 'true'
36+
#if: github.repository_owner == 'microcks' && steps.changes.outputs.grpc-hello-world == 'true'
3737
uses: docker/setup-buildx-action@v2
3838

3939
- name: Login to Quay.io Registry and setup multi-arch builder
40-
if: github.repository_owner == 'microcks' && steps.changes.outputs.grpc-hello-world == 'true'
40+
#if: github.repository_owner == 'microcks' && steps.changes.outputs.grpc-hello-world == 'true'
4141
run: |
4242
echo ${{ secrets.QUAY_PASSWORD }} | docker login -u ${{ secrets.QUAY_USERNAME }} --password-stdin quay.io
4343
BUILDER=buildx-multi-arch
4444
docker buildx inspect $BUILDER || docker buildx create --name=$BUILDER --driver=docker-container --driver-opt=network=host
4545
4646
- name: Build and push container image
47-
if: github.repository_owner == 'microcks' && steps.changes.outputs.grpc-hello-world == 'true'
47+
#if: github.repository_owner == 'microcks' && steps.changes.outputs.grpc-hello-world == 'true'
4848
run: |
4949
cd grpc-hello-world-demo
5050
mvn -B package -Pnative -Dquarkus.native.container-build=true
@@ -180,6 +180,7 @@ jobs:
180180
- 'shift-left-demo/spring-boot-order-service-devtools/**'
181181
182182
- name: Set up JDK 17 for x64
183+
if: github.repository_owner == 'microcks' && steps.changes.outputs.shift-left-demo-sb == 'true'
183184
uses: actions/setup-java@v3
184185
with:
185186
java-version: '17'
@@ -188,6 +189,7 @@ jobs:
188189
cache: maven
189190

190191
- name: Build Java components
192+
if: github.repository_owner == 'microcks' && steps.changes.outputs.shift-left-demo-sb == 'true'
191193
run: |
192194
cd shift-left-demo/spring-boot-order-service-devtools
193195
mvn -B clean package

0 commit comments

Comments
 (0)