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

Commit 2f85bad

Browse files
author
user
committed
Merge branch 'master' of github.com:binary-com/deriv-api-docs
2 parents aeee3d8 + 2593a78 commit 2f85bad

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/actions/deploy_to_kubernetes/action.yml

Lines changed: 5 additions & 1 deletion
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,8 +28,9 @@ 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"
29-
echo "APP_NAME=deriv-api-docs" >> "$GITHUB_ENV"
33+
echo "APP_NAME=deriv-com-api" >> "$GITHUB_ENV"
3034
shell: bash
3135
- name: Deploying to k8s cluster for service ${{ inputs.K8S_NAMESPACE }} 🚀
3236
run: |

.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)