2020-05-14 22:48:02 +02:00
|
|
|
name: Budibase Release
|
2023-05-31 14:36:43 +02:00
|
|
|
concurrency:
|
|
|
|
group: release
|
|
|
|
cancel-in-progress: false
|
2020-05-14 22:48:02 +02:00
|
|
|
|
2021-09-16 22:15:09 +02:00
|
|
|
on:
|
2023-04-24 20:00:21 +02:00
|
|
|
push:
|
|
|
|
tags:
|
2023-05-05 15:56:43 +02:00
|
|
|
- "v[0-9]+.[0-9]+.[0-9]+"
|
2023-04-24 20:00:21 +02:00
|
|
|
# Exclude all pre-releases
|
2023-05-05 15:56:43 +02:00
|
|
|
- "!v*[0-9]+.[0-9]+.[0-9]+-*"
|
2021-06-08 21:43:01 +02:00
|
|
|
|
|
|
|
env:
|
2023-04-20 20:30:48 +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 }}
|
2023-04-20 20:30:48 +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:
|
2023-04-21 18:29:04 +02:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
2023-05-05 15:56:43 +02:00
|
|
|
fetch-depth: 0
|
2023-04-21 18:29:04 +02:00
|
|
|
|
2023-06-06 10:04:39 +02:00
|
|
|
- name: Fail if tag is not master
|
2023-04-20 20:30:48 +02:00
|
|
|
run: |
|
2023-06-06 10:11:45 +02:00
|
|
|
if ! git merge-base --is-ancestor ${{ github.sha }} origin/master; then
|
2023-06-06 10:04:39 +02:00
|
|
|
echo "Tag is not in master. This pipeline can only execute tags that are present on the master branch"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2023-04-21 18:29:04 +02:00
|
|
|
|
2020-05-14 22:48:02 +02:00
|
|
|
- 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
|
|
|
|
2023-05-25 14:27:18 +02:00
|
|
|
- run: yarn install --frozen-lockfile
|
2023-04-21 18:29:04 +02:00
|
|
|
- name: Update versions
|
|
|
|
run: |
|
|
|
|
version=$(cat lerna.json \
|
|
|
|
| grep version \
|
|
|
|
| head -1 \
|
|
|
|
| awk -F: '{gsub(/"/,"",$2);gsub(/[[:space:]]*/,"",$2); print $2}' \
|
|
|
|
| sed 's/[",]//g')
|
|
|
|
echo "Setting version $version"
|
|
|
|
yarn lerna exec "yarn version --no-git-tag-version --new-version=$version"
|
2023-05-05 16:33:50 +02:00
|
|
|
echo "Updating dependencies"
|
2023-04-21 18:37:09 +02:00
|
|
|
node scripts/syncLocalDependencies.js $version
|
2023-05-05 16:33:50 +02:00
|
|
|
echo "Syncing yarn workspace"
|
2023-04-21 18:29:04 +02:00
|
|
|
yarn
|
2021-09-16 22:15:09 +02:00
|
|
|
- run: yarn lint
|
2023-05-22 12:42:14 +02:00
|
|
|
- run: yarn build --configuration=production
|
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 }}
|
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 "<>"
|
2023-04-21 18:29:04 +02:00
|
|
|
git submodule foreach git commit -a -m 'Release process'
|
|
|
|
git commit -a -m 'Release process'
|
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
|
|
|
|
2023-05-29 12:21:50 +02:00
|
|
|
- name: "Get Previous tag"
|
|
|
|
id: previoustag
|
|
|
|
uses: "WyriHaximus/github-action-get-previous-tag@v1"
|
|
|
|
|
|
|
|
- name: Build/release Docker images
|
|
|
|
run: |
|
|
|
|
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
|
|
|
|
yarn build:docker
|
|
|
|
env:
|
|
|
|
DOCKER_USER: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_API_KEY }}
|
|
|
|
BUDIBASE_RELEASE_VERSION: ${{ steps.previoustag.outputs.tag }}
|
|
|
|
|
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
|
2023-04-21 18:29:04 +02:00
|
|
|
git fetch
|
2023-03-07 15:39:54 +01:00
|
|
|
mkdir sync
|
|
|
|
echo "Packaging chart to sync dir"
|
2023-04-12 17:30:10 +02:00
|
|
|
helm package charts/budibase --version 0.0.0-master --app-version v"$RELEASE_VERSION" --destination sync
|
2023-03-07 15:39:54 +01:00
|
|
|
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: |
|
|
|
|
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 }}
|