preprod job for testing in isolation
This commit is contained in:
parent
6ebc345b65
commit
725f7d0ea2
|
@ -0,0 +1,59 @@
|
||||||
|
name: Budibase Release Preprod
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
env:
|
||||||
|
POSTHOG_TOKEN: ${{ secrets.POSTHOG_TOKEN }}
|
||||||
|
INTERCOM_TOKEN: ${{ secrets.INTERCOM_TOKEN }}
|
||||||
|
POSTHOG_URL: ${{ secrets.POSTHOG_URL }}
|
||||||
|
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
|
||||||
|
|
||||||
|
- name: 'Get Previous tag'
|
||||||
|
id: previoustag
|
||||||
|
uses: "WyriHaximus/github-action-get-previous-tag@v1"
|
||||||
|
|
||||||
|
# - name: Pull values.yaml from budibase-infra
|
||||||
|
# run: |
|
||||||
|
# curl -H "Authorization: token ${{ secrets.GH_PERSONAL_TOKEN }}" \ [c3a7a9d12]
|
||||||
|
# -H 'Accept: application/vnd.github.v3.raw' \
|
||||||
|
# -o values.preprod.yaml \
|
||||||
|
# -L https://api.github.com/repos/budibase/budibase-infra/contents/kubernetes/values.preprod.yaml
|
||||||
|
|
||||||
|
- name: Deploy to Preprod Environment
|
||||||
|
uses: deliverybot/helm@v1
|
||||||
|
with:
|
||||||
|
release: budibase-preprod
|
||||||
|
namespace: budibase
|
||||||
|
chart: charts/budibase
|
||||||
|
token: ${{ github.token }}
|
||||||
|
values: |
|
||||||
|
globals:
|
||||||
|
appVersion: ${{ steps.previoustag.outputs.tag }}
|
||||||
|
# value-files: >-
|
||||||
|
# [
|
||||||
|
# "charts/budibase/values.yaml"
|
||||||
|
# ]
|
||||||
|
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 }}
|
|
@ -3,7 +3,7 @@ name: Budibase Release
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- test
|
||||||
|
|
||||||
env:
|
env:
|
||||||
POSTHOG_TOKEN: ${{ secrets.POSTHOG_TOKEN }}
|
POSTHOG_TOKEN: ${{ secrets.POSTHOG_TOKEN }}
|
||||||
|
@ -64,26 +64,26 @@ jobs:
|
||||||
# -o values.preprod.yaml \
|
# -o values.preprod.yaml \
|
||||||
# -L https://api.github.com/repos/budibase/budibase-infra/contents/kubernetes/values.preprod.yaml
|
# -L https://api.github.com/repos/budibase/budibase-infra/contents/kubernetes/values.preprod.yaml
|
||||||
|
|
||||||
- name: Deploy to Preprod Environment
|
# - name: Deploy to Preprod Environment
|
||||||
uses: deliverybot/helm@v1
|
# uses: deliverybot/helm@v1
|
||||||
with:
|
# with:
|
||||||
release: budibase-preprod
|
# release: budibase-preprod
|
||||||
namespace: budibase
|
# namespace: budibase
|
||||||
chart: charts/budibase
|
# chart: charts/budibase
|
||||||
token: ${{ github.token }}
|
# token: ${{ github.token }}
|
||||||
values: |
|
# values: |
|
||||||
globals:
|
# globals:
|
||||||
appVersion: ${{ steps.previoustag.outputs.tag }}
|
# appVersion: ${{ steps.previoustag.outputs.tag }}
|
||||||
# value-files: >-
|
# # value-files: >-
|
||||||
# [
|
# # [
|
||||||
# "charts/budibase/values.yaml"
|
# # "charts/budibase/values.yaml"
|
||||||
# ]
|
# # ]
|
||||||
env:
|
# env:
|
||||||
KUBECONFIG_FILE: '${{ secrets.PREPROD_KUBECONFIG }}'
|
# KUBECONFIG_FILE: '${{ secrets.PREPROD_KUBECONFIG }}'
|
||||||
|
|
||||||
- name: Discord Webhook Action
|
# - name: Discord Webhook Action
|
||||||
uses: tsickert/discord-webhook@v4.0.0
|
# uses: tsickert/discord-webhook@v4.0.0
|
||||||
with:
|
# with:
|
||||||
webhook-url: ${{ secrets.PROD_DEPLOY_WEBHOOK_URL }}
|
# webhook-url: ${{ secrets.PROD_DEPLOY_WEBHOOK_URL }}
|
||||||
content: "Preprod Deployment Complete: ${{ env.RELEASE_VERSION }} deployed to Budibase Pre-prod."
|
# content: "Preprod Deployment Complete: ${{ env.RELEASE_VERSION }} deployed to Budibase Pre-prod."
|
||||||
embed-title: ${{ env.RELEASE_VERSION }}
|
# embed-title: ${{ env.RELEASE_VERSION }}
|
||||||
|
|
Loading…
Reference in New Issue