Skip to content

Merge pull request #406 from internxt/fix/return-tokens-on-password-c… #462

Merge pull request #406 from internxt/fix/return-tokens-on-password-c…

Merge pull request #406 from internxt/fix/return-tokens-on-password-c… #462

name: Build & Deploy to Production
on:
push:
branches: ["master", "feature/cd"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v2
with:
registry-url: 'https://npm.pkg.github.com'
- run: echo "registry=https://registry.yarnpkg.com/" > .npmrc
- run: echo "@internxt:registry=https://npm.pkg.github.com" >> .npmrc
# You cannot read packages from other private repos with GITHUB_TOKEN
# You have to use a PAT instead https://github.com/actions/setup-node/issues/49
- run: echo //npm.pkg.github.com/:_authToken=${{ secrets.PERSONAL_ACCESS_TOKEN }} >> .npmrc
- run: echo "always-auth=true" >> .npmrc
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build and push to drive-server-wip
uses: docker/build-push-action@v2
with:
context: ./
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/drive-server-wip:${{ github.sha }}
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: production
steps:
- uses: actions/checkout@master
# B2C Deployment
- name: Deploy update on B2C cluster
uses: steebchen/[email protected]
with:
config: ${{ secrets.KUBE_CONFIG_DATA }}
command: set image --record deployment/drive-server-wip drive-server-wip=${{ secrets.DOCKERHUB_USERNAME }}/drive-server-wip:${{ github.sha }} -n drive
- name: Verify update on B2C cluster
uses: steebchen/[email protected]
with:
config: ${{ secrets.KUBE_CONFIG_DATA }}
command: rollout status deployment/drive-server-wip -n drive
# EU-DC Deployment
- name: Deploy update on EU-DC
uses: steebchen/[email protected]
with:
config: ${{ secrets.KUBE_CONFIG_DATA_EU_DC }}
version: v1.22.2
command: set image --record deployment/drive-server-wip drive-server-wip=${{ secrets.DOCKERHUB_USERNAME }}/drive-server-wip:${{ github.sha }} -n drive
- name: Verify EU-DC update
uses: steebchen/[email protected]
with:
config: ${{ secrets.KUBE_CONFIG_DATA_EU_DC }}
command: rollout status deployment/drive-server-wip -n drive
# NA-DC Deployment
- name: Deploy update on NA-DC
uses: steebchen/[email protected]
with:
config: ${{ secrets.KUBE_CONFIG_DATA_NA_DC }}
command: set image --record deployment/drive-server-wip drive-server-wip=${{ secrets.DOCKERHUB_USERNAME }}/drive-server-wip:${{ github.sha }} -n drive
- name: Verify EU-DC update
uses: steebchen/[email protected]
with:
config: ${{ secrets.KUBE_CONFIG_DATA_NA_DC }}
command: rollout status deployment/drive-server-wip -n drive