1
0
Fork 0
mirror of synced 2024-07-01 12:30:41 +12:00
budibase/.github/workflows/deploy-preprod.yml

77 lines
2.4 KiB
YAML
Raw Normal View History

name: Budibase Deploy Preprod
2021-12-20 21:52:16 +13:00
on:
workflow_dispatch:
env:
INTERCOM_TOKEN: ${{ secrets.INTERCOM_TOKEN }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-1
2021-12-20 22:33:54 +13:00
- name: Get the latest budibase release version
id: version
run: |
release_version=$(cat lerna.json | jq -r '.version')
echo "RELEASE_VERSION=$release_version" >> $GITHUB_ENV
2021-12-20 21:52:16 +13:00
- name: Tag and release Proxy service docker image
run: |
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
yarn build:docker:proxy:preprod
2022-03-10 19:59:17 +13:00
docker tag proxy-service budibase/proxy:$PREPROD_TAG
docker push budibase/proxy:$PREPROD_TAG
env:
DOCKER_USER: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_API_KEY }}
2022-03-10 19:59:17 +13:00
PREPROD_TAG: k8s-preprod
2021-12-22 04:05:43 +13:00
- name: Pull values.yaml from budibase-infra
run: |
curl -H "Authorization: token ${{ secrets.GH_PERSONAL_TOKEN }}" \
-H 'Accept: application/vnd.github.v3.raw' \
-o values.preprod.yaml \
-L https://api.github.com/repos/budibase/budibase-infra/contents/kubernetes/budibase-preprod/values.yaml
2021-12-22 05:25:51 +13:00
wc -l values.preprod.yaml
2021-12-20 21:52:16 +13:00
- name: Deploy to Preprod Environment
uses: glopezep/helm@v1.7.1
2021-12-20 21:52:16 +13:00
with:
release: budibase-preprod
namespace: budibase
chart: charts/budibase
token: ${{ github.token }}
2021-12-22 02:36:47 +13:00
helm: helm3
2021-12-20 21:52:16 +13:00
values: |
globals:
2021-12-20 22:33:54 +13:00
appVersion: v${{ env.RELEASE_VERSION }}
2021-12-22 02:54:24 +13:00
ingress:
2021-12-22 03:13:19 +13:00
enabled: true
nginx: true
2021-12-22 04:05:43 +13:00
value-files: >-
[
"values.preprod.yaml"
]
2021-12-20 21:52:16 +13:00
env:
KUBECONFIG_FILE: '${{ secrets.PREPROD_KUBECONFIG }}'
- name: Discord Webhook Action
uses: tsickert/discord-webhook@v4.0.0
with:
webhook-url: ${{ secrets.PROD_DEPLOY_WEBHOOK_URL }}
content: "Preprod Deployment Complete: ${{ env.RELEASE_VERSION }} deployed to Budibase Pre-prod."
embed-title: ${{ env.RELEASE_VERSION }}