Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit 2593a78

Browse files
authored
Merge pull request #266 from binary-com/ako/add-missed-env-var
Ako/ add DOCKERHUB_ORGANISATION as its needed in devops script
2 parents fb02453 + 2ddbf87 commit 2593a78

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.github/actions/deploy_to_kubernetes/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ inputs:
1717
SERVICEACCOUNT_TOKEN:
1818
description: Kubernetes service account token
1919
required: true
20+
DOCKERHUB_ORGANISATION:
21+
description: Dockerhub organisation
22+
required: true
2023
runs:
2124
using: composite
2225
steps:
@@ -25,6 +28,7 @@ runs:
2528
echo "NAMESPACE=${{ inputs.K8S_NAMESPACE }}" >> "$GITHUB_ENV"
2629
echo "KUBE_SERVER=${{ inputs.KUBE_SERVER }}" >> "$GITHUB_ENV"
2730
echo "SERVICEACCOUNT_TOKEN=${{ inputs.SERVICEACCOUNT_TOKEN }}" >> "$GITHUB_ENV"
31+
echo "DOCKERHUB_ORGANISATION=${{ inputs.DOCKERHUB_ORGANISATION }}" >> "$GITHUB_ENV"
2832
echo "CA_CRT=${{ inputs.CA_CRT }}" >> "$GITHUB_ENV"
2933
echo "APP_NAME=deriv-com-api" >> "$GITHUB_ENV"
3034
shell: bash

.github/workflows/release_production.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ jobs:
4949
CA_CRT: ${{ secrets.CA_CRT }}
5050
SERVICEACCOUNT_TOKEN: ${{ secrets.SERVICEACCOUNT_TOKEN }}
5151
KUBE_SERVER: ${{ secrets.KUBE_SERVER }}
52+
DOCKERHUB_ORGANISATION: ${{ secrets.DOCKERHUB_ORGANISATION }}
5253

5354
send_slack_notification:
5455
name: Send Slack Notification

.github/workflows/release_staging.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@ jobs:
4242
CA_CRT: ${{ secrets.CA_CRT }}
4343
SERVICEACCOUNT_TOKEN: ${{ secrets.SERVICEACCOUNT_TOKEN }}
4444
KUBE_SERVER: ${{ secrets.KUBE_SERVER }}
45+
DOCKERHUB_ORGANISATION: ${{ secrets.DOCKERHUB_ORGANISATION }}

0 commit comments

Comments
 (0)