2022-06-20 14:27:03 +02:00
|
|
|
name: Budibase Prerelease
|
2022-12-19 17:03:07 +01:00
|
|
|
concurrency: release-prerelease
|
2021-07-22 18:21:12 +02:00
|
|
|
|
2022-02-15 14:24:06 +01:00
|
|
|
on:
|
|
|
|
push:
|
2021-07-22 18:21:12 +02:00
|
|
|
branches:
|
2022-06-20 11:40:05 +02:00
|
|
|
- develop
|
2021-12-31 14:59:48 +01:00
|
|
|
paths:
|
2022-02-15 14:24:06 +01:00
|
|
|
- '.aws/**'
|
|
|
|
- '.github/**'
|
|
|
|
- 'charts/**'
|
|
|
|
- 'packages/**'
|
|
|
|
- 'scripts/**'
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
2022-05-03 15:18:18 +02:00
|
|
|
workflow_dispatch:
|
2021-07-22 18:21:12 +02:00
|
|
|
|
|
|
|
env:
|
2022-08-08 12:51:38 +02:00
|
|
|
# Posthog token used by ui at build time
|
|
|
|
# disable unless needed for testing
|
|
|
|
# POSTHOG_TOKEN: phc_uDYOfnFt6wAbBAXkC6STjcrTpAFiWIhqgFcsC1UVO5F
|
2021-09-21 12:47:14 +02:00
|
|
|
INTERCOM_TOKEN: ${{ secrets.INTERCOM_TOKEN }}
|
2022-06-28 23:45:05 +02:00
|
|
|
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
2022-06-28 19:07:43 +02:00
|
|
|
FEATURE_PREVIEW_URL: https://budirelease.live
|
2022-02-15 14:24:06 +01:00
|
|
|
|
2021-07-22 18:21:12 +02:00
|
|
|
jobs:
|
2022-12-19 17:01:12 +01:00
|
|
|
release-images:
|
2022-02-15 14:24:06 +01:00
|
|
|
runs-on: ubuntu-latest
|
2021-07-22 18:21:12 +02:00
|
|
|
|
|
|
|
steps:
|
2022-06-20 11:40:05 +02:00
|
|
|
- name: Fail if branch is not develop
|
|
|
|
if: github.ref != 'refs/heads/develop'
|
|
|
|
run: |
|
|
|
|
echo "Ref is not develop, you must run this job from develop."
|
|
|
|
exit 1
|
2021-07-22 18:21:12 +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-20 17:11:06 +02:00
|
|
|
|
2022-04-21 22:55:16 +02:00
|
|
|
- name: Install Pro
|
2022-04-21 23:12:57 +02:00
|
|
|
run: yarn install:pro develop
|
2022-04-20 17:11:06 +02:00
|
|
|
|
2022-02-15 14:24:06 +01:00
|
|
|
- run: yarn
|
2022-12-19 17:01:12 +01:00
|
|
|
- run: yarn bootstrap
|
2022-09-21 10:09:12 +02:00
|
|
|
- run: yarn build
|
|
|
|
- run: yarn build:sdk
|
2023-02-16 15:14:22 +01:00
|
|
|
# - run: yarn test
|
2021-07-22 18:21:12 +02:00
|
|
|
|
2022-04-20 21:32:00 +02:00
|
|
|
- name: Publish budibase packages to NPM
|
|
|
|
env:
|
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
run: |
|
|
|
|
# setup the username and email.
|
2022-04-20 21:59:37 +02:00
|
|
|
git config --global user.name "Budibase Staging Release Bot"
|
|
|
|
git config --global user.email "<>"
|
2022-04-20 21:32:00 +02:00
|
|
|
echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} >> .npmrc
|
2022-04-20 22:25:12 +02:00
|
|
|
yarn release:develop
|
2022-04-20 17:11:06 +02:00
|
|
|
|
2022-04-20 22:25:12 +02:00
|
|
|
- name: Build/release Docker images
|
|
|
|
run: |
|
|
|
|
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
|
|
|
|
yarn build
|
|
|
|
yarn build:docker:develop
|
|
|
|
env:
|
|
|
|
DOCKER_USER: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_API_KEY }}
|
2022-05-26 14:58:17 +02:00
|
|
|
|
2022-12-19 17:01:12 +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
|
|
|
|
|
|
|
|
# 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-develop --app-version develop --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: develop"
|
|
|
|
git push
|
|
|
|
|
2022-12-19 17:04:58 +01:00
|
|
|
trigger-deploy-to-qa-env:
|
2022-12-19 17:01:12 +01:00
|
|
|
needs: [release-helm-chart]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-12-20 17:10:02 +01:00
|
|
|
- uses: actions/checkout@v2
|
2022-12-19 17:01:12 +01:00
|
|
|
- name: Get the current budibase release version
|
|
|
|
id: version
|
|
|
|
run: |
|
|
|
|
release_version=$(cat lerna.json | jq -r '.version')
|
|
|
|
echo "RELEASE_VERSION=$release_version" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- uses: passeidireto/trigger-external-workflow-action@main
|
|
|
|
env:
|
|
|
|
PAYLOAD_VERSION: ${{ env.RELEASE_VERSION }}
|
|
|
|
with:
|
|
|
|
repository: budibase/budibase-deploys
|
2023-02-17 09:25:10 +01:00
|
|
|
event: budicloud-qa-deploy
|
2022-12-19 17:01:12 +01:00
|
|
|
github_pat: ${{ secrets.GH_ACCESS_TOKEN }}
|