51 lines
1.4 KiB
YAML
51 lines
1.4 KiB
YAML
name: S3 Deploy
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
paths:
|
|
- frontend/**
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Cache node modules
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: node_modules
|
|
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.OS }}-build-
|
|
${{ runner.OS }}-
|
|
|
|
- uses: azure/k8s-set-context@v1
|
|
with:
|
|
method: kubeconfig
|
|
kubeconfig: ${{ secrets.OSS_KUBECONFIG }} # Use content of kubeconfig in secret.
|
|
id: setcontext
|
|
- name: Install
|
|
run: npm install
|
|
|
|
- name: Build and deploy
|
|
run: |
|
|
cd frontend
|
|
bash build.sh
|
|
cp -arl public frontend
|
|
minio_pod=$(kubectl get po -n db -l app.kubernetes.io/name=minio -n db --output custom-columns=name:.metadata.name | tail -n+2)
|
|
echo $minio_pod
|
|
echo copying frontend to container.
|
|
kubectl -n db cp frontend $minio_pod:/data/
|
|
rm -rf frontend
|
|
|
|
# - name: Debug Job
|
|
# if: ${{ failure() }}
|
|
# uses: mxschmitt/action-tmate@v3
|
|
# env:
|
|
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
# AWS_REGION: eu-central-1
|
|
# AWS_S3_BUCKET_NAME: ${{ secrets.AWS_S3_BUCKET_NAME }}
|