2020-05-14 22:48:02 +02:00
|
|
|
name: Budibase Release
|
2022-05-12 22:13:08 +02:00
|
|
|
concurrency: release
|
2020-05-14 22:48:02 +02:00
|
|
|
|
2021-09-16 22:15:09 +02:00
|
|
|
on:
|
2020-05-15 15:39:27 +02:00
|
|
|
push:
|
2021-05-20 13:57:29 +02:00
|
|
|
branches:
|
2021-12-21 18:44:04 +01:00
|
|
|
- master
|
2021-12-31 14:59:48 +01:00
|
|
|
paths:
|
|
|
|
- '.aws/**'
|
|
|
|
- '.github/**'
|
|
|
|
- 'charts/**'
|
|
|
|
- 'packages/**'
|
|
|
|
- 'scripts/**'
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
2022-05-03 15:18:18 +02:00
|
|
|
workflow_dispatch:
|
2022-07-11 17:05:41 +02:00
|
|
|
inputs:
|
|
|
|
versioning:
|
|
|
|
type: choice
|
|
|
|
description: "Versioning type: patch, minor, major"
|
|
|
|
default: patch
|
|
|
|
options:
|
|
|
|
- patch
|
|
|
|
- minor
|
|
|
|
- major
|
|
|
|
required: true
|
2021-06-08 21:43:01 +02:00
|
|
|
|
|
|
|
env:
|
2022-06-06 16:27:29 +02:00
|
|
|
# Posthog token used by ui at build time
|
2022-08-08 15:03:04 +02:00
|
|
|
POSTHOG_TOKEN: phc_bIjZL7oh2GEUd2vqvTBH8WvrX0fWTFQMs6H5KQxiUxU
|
2021-09-21 12:47:14 +02:00
|
|
|
INTERCOM_TOKEN: ${{ secrets.INTERCOM_TOKEN }}
|
2021-06-08 21:43:01 +02:00
|
|
|
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
|
2022-04-21 23:20:38 +02:00
|
|
|
PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
2021-09-16 22:15:09 +02:00
|
|
|
|
2020-05-14 22:48:02 +02:00
|
|
|
jobs:
|
2023-03-07 15:39:54 +01:00
|
|
|
release-images:
|
2021-09-16 22:15:09 +02:00
|
|
|
runs-on: ubuntu-latest
|
2020-05-14 22:48:02 +02:00
|
|
|
steps:
|
2022-05-03 15:18:18 +02:00
|
|
|
- name: Fail if branch is not master
|
|
|
|
if: github.ref != 'refs/heads/master'
|
|
|
|
run: |
|
|
|
|
echo "Ref is not master, you must run this job from master."
|
|
|
|
exit 1
|
2020-05-14 22:48:02 +02:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
2021-11-18 11:59:35 +01:00
|
|
|
node-version: 14.x
|
2022-04-21 23:12:57 +02:00
|
|
|
|
|
|
|
- name: Install Pro
|
|
|
|
run: yarn install:pro master
|
|
|
|
|
2021-09-16 22:15:09 +02:00
|
|
|
- run: yarn
|
|
|
|
- run: yarn bootstrap
|
|
|
|
- run: yarn lint
|
|
|
|
- run: yarn build
|
2022-09-21 10:09:12 +02:00
|
|
|
- run: yarn build:sdk
|
2020-05-15 17:06:53 +02:00
|
|
|
|
2021-05-26 16:08:57 +02:00
|
|
|
- name: Publish budibase packages to NPM
|
|
|
|
env:
|
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
2022-07-11 18:17:05 +02:00
|
|
|
RELEASE_VERSION_TYPE: ${{ github.event.inputs.versioning }}
|
2021-09-16 22:15:09 +02:00
|
|
|
run: |
|
2021-05-26 16:52:31 +02:00
|
|
|
# setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default
|
2022-04-27 10:37:42 +02:00
|
|
|
git config --global user.name "Budibase Release Bot"
|
|
|
|
git config --global user.email "<>"
|
2021-09-16 22:15:09 +02:00
|
|
|
echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} >> .npmrc
|
2021-05-26 16:52:31 +02:00
|
|
|
yarn release
|
2021-01-11 12:24:53 +01:00
|
|
|
|
2021-09-16 22:15:09 +02:00
|
|
|
- name: 'Get Previous tag'
|
|
|
|
id: previoustag
|
|
|
|
uses: "WyriHaximus/github-action-get-previous-tag@v1"
|
2021-08-24 17:58:10 +02:00
|
|
|
|
2021-01-11 12:24:53 +01:00
|
|
|
- name: Build/release Docker images
|
2021-09-21 21:21:15 +02:00
|
|
|
run: |
|
|
|
|
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
|
|
|
|
yarn build
|
|
|
|
yarn build:docker
|
|
|
|
env:
|
|
|
|
DOCKER_USER: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_API_KEY }}
|
2021-11-18 11:59:35 +01:00
|
|
|
BUDIBASE_RELEASE_VERSION: ${{ steps.previoustag.outputs.tag }}
|
2022-04-26 10:47:32 +02:00
|
|
|
|
2023-03-07 15:39:54 +01:00
|
|
|
release-helm-chart:
|
|
|
|
needs: [release-images]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Helm
|
|
|
|
uses: azure/setup-helm@v1
|
|
|
|
id: helm-install
|
|
|
|
|
2023-03-09 17:33:48 +01: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
|
2023-03-07 15:39:54 +01:00
|
|
|
|
|
|
|
# due to helm repo index issue: https://github.com/helm/helm/issues/7363
|
|
|
|
# we need to create new package in a different dir, merge the index and move the package back
|
|
|
|
- name: Build and release helm chart
|
|
|
|
run: |
|
|
|
|
git config user.name "Budibase Helm Bot"
|
|
|
|
git config user.email "<>"
|
|
|
|
git reset --hard
|
|
|
|
git pull
|
|
|
|
mkdir sync
|
|
|
|
echo "Packaging chart to sync dir"
|
|
|
|
helm package charts/budibase --version 0.0.0-master --app-version "$RELEASE_VERSION" --destination sync
|
|
|
|
echo "Packaging successful"
|
|
|
|
git checkout gh-pages
|
|
|
|
echo "Indexing helm repo"
|
|
|
|
helm repo index --merge docs/index.yaml sync
|
|
|
|
mv -f sync/* docs
|
|
|
|
rm -rf sync
|
|
|
|
echo "Pushing new helm release"
|
|
|
|
git add -A
|
|
|
|
git commit -m "Helm Release: ${{ env.RELEASE_VERSION }}"
|
|
|
|
git push
|
|
|
|
|
2023-03-09 12:02:09 +01:00
|
|
|
deploy-to-legacy-preprod-env:
|
2023-03-09 12:16:08 +01:00
|
|
|
needs: [release-images]
|
2023-03-09 12:02:09 +01:00
|
|
|
uses: ./.github/workflows/deploy-preprod.yml
|
|
|
|
secrets: inherit
|
2023-03-07 15:39:54 +01:00
|
|
|
|
2023-03-07 14:34:18 +01:00
|
|
|
# Trigger deploy to new EKS preprod environment
|
|
|
|
trigger-deploy-to-preprod-env:
|
|
|
|
needs: [release-helm-chart]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-03-07 16:14:39 +01:00
|
|
|
- uses: actions/checkout@v2
|
2023-03-09 17:33:48 +01:00
|
|
|
|
|
|
|
- name: Get the latest budibase release version
|
|
|
|
id: version
|
|
|
|
run: |
|
2023-03-15 11:13:02 +01:00
|
|
|
git pull
|
2023-03-09 17:33:48 +01:00
|
|
|
release_version=$(cat lerna.json | jq -r '.version')
|
|
|
|
echo "RELEASE_VERSION=$release_version" >> $GITHUB_ENV
|
2023-03-07 16:14:39 +01:00
|
|
|
|
2023-03-07 14:34:18 +01:00
|
|
|
- uses: passeidireto/trigger-external-workflow-action@main
|
2022-04-26 10:47:32 +02:00
|
|
|
env:
|
2023-03-09 17:33:48 +01:00
|
|
|
PAYLOAD_VERSION: ${{ env.RELEASE_VERSION }}
|
2022-04-26 10:47:32 +02:00
|
|
|
with:
|
2023-03-07 14:34:18 +01:00
|
|
|
repository: budibase/budibase-deploys
|
|
|
|
event: budicloud-preprod-deploy
|
|
|
|
github_pat: ${{ secrets.GH_ACCESS_TOKEN }}
|