Skip to content

Commit

Permalink
Fix workflow docker push issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Krishanx92 committed Jan 16, 2024
1 parent 6523a5c commit 55f9cb2
Show file tree
Hide file tree
Showing 12 changed files with 9 additions and 410 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/adapter-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
cd apk-repo/adapter
./gradlew build
- name: Run Gradle Build
if: github.event_name == 'pull_request_target' && github.event.action == 'closed' && github.event.pull_request_target.merged == true
if: github.event_name == 'pull_request_target' && github.event.action == 'closed' && github.event.pull_request.merged == true
run: |
cd apk-repo/adapter
./gradlew docker_push -Pdocker_organization=${{ secrets.DOCKER_ORGANIZATION }} -Pdocker_username=${{ secrets.DOCKER_USERNAME }} -Pdocker_password=${{ secrets.DOCKER_PASSWORD }} -Pimage_version=latest -PmultiArch=true
Expand Down
133 changes: 0 additions & 133 deletions .github/workflows/admin-domain-service-release.yml

This file was deleted.

134 changes: 0 additions & 134 deletions .github/workflows/backoffice-release.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/common-controller-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
cd apk-repo/common-controller
./gradlew build
- name: Run Gradle Build
if: github.event_name == 'pull_request_target' && github.event.action == 'closed' && github.event.pull_request_target.merged == true
if: github.event_name == 'pull_request_target' && github.event.action == 'closed' && github.event.pull_request.merged == true
run: |
cd apk-repo/common-controller
./gradlew docker_push -Pdocker_organization=${{ secrets.DOCKER_ORGANIZATION }} -Pdocker_username=${{ secrets.DOCKER_USERNAME }} -Pdocker_password=${{ secrets.DOCKER_PASSWORD }} -Pimage_version=latest -PmultiArch=true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/config-deployer-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
cd apk-repo/runtime/config-deployer-service
./gradlew build
- name: Run Gradle Build
if: github.event_name == 'pull_request_target' && github.event.action == 'closed' && github.event.pull_request_target.merged == true
if: github.event_name == 'pull_request_target' && github.event.action == 'closed' && github.event.pull_request.merged == true
run: |
cd apk-repo/runtime/config-deployer-service
./gradlew docker:docker_push -Pdocker_organization=${{ secrets.DOCKER_ORGANIZATION }} -Pdocker_username=${{ secrets.DOCKER_USERNAME }} -Pdocker_password=${{ secrets.DOCKER_PASSWORD }} -Pimage_version=latest -PmultiArch=true
Expand Down
Loading

0 comments on commit 55f9cb2

Please sign in to comment.