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-07-20 13:05:04 +02:00
|
|
|
- "[0-9]+.[0-9]+.[0-9]+"
|
2023-04-24 20:00:21 +02:00
|
|
|
# Exclude all pre-releases
|
2023-07-20 13:05:04 +02:00
|
|
|
- "!*[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 }}
|
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 12:12:29 +02:00
|
|
|
- name: Fail if tag is not in 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
|
|
|
|
|
2020-05-14 22:48:02 +02:00
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
2023-07-28 17:53:11 +02:00
|
|
|
node-version: 18.x
|
2023-10-30 14:44:48 +01:00
|
|
|
cache: yarn
|
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
|
2023-06-07 18:18:59 +02:00
|
|
|
run: ./scripts/updateVersions.sh
|
2021-09-16 22:15:09 +02:00
|
|
|
- run: yarn lint
|
2023-06-02 16:06:19 +02:00
|
|
|
- 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 }}
|
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-07-05 14:18:21 +02:00
|
|
|
- name: "Get Current tag"
|
|
|
|
id: currenttag
|
|
|
|
run: |
|
2023-08-07 15:30:10 +02:00
|
|
|
version=$(./scripts/getCurrentVersion.sh)
|
2023-08-07 14:23:12 +02:00
|
|
|
echo "Using tag $version"
|
|
|
|
echo "version=$version" >> "$GITHUB_OUTPUT"
|
2023-05-29 12:21:50 +02:00
|
|
|
|
2023-10-30 11:45:05 +01:00
|
|
|
- name: Setup Docker Buildx
|
|
|
|
id: buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
2023-10-30 14:34:55 +01:00
|
|
|
|
|
|
|
- name: Docker login
|
2023-05-29 12:21:50 +02:00
|
|
|
run: |
|
|
|
|
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
|
|
|
|
env:
|
|
|
|
DOCKER_USER: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_API_KEY }}
|
2023-10-30 14:34:55 +01:00
|
|
|
|
2023-10-30 14:37:33 +01:00
|
|
|
- name: Build worker docker
|
2023-10-30 14:34:55 +01:00
|
|
|
uses: docker/build-push-action@v5
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: true
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
build-args: |
|
|
|
|
BUDIBASE_VERSION=${{ env.BUDIBASE_VERSION }}
|
|
|
|
tags: ${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
|
|
|
|
file: ./packages/worker/Dockerfile.v2
|
|
|
|
cache-from: type=registry,ref=${{ env.IMAGE_NAME }}:latest
|
|
|
|
cache-to: type=inline
|
|
|
|
env:
|
|
|
|
IMAGE_NAME: budibase/worker
|
2023-10-30 15:02:36 +01:00
|
|
|
IMAGE_TAG: ${{ steps.currenttag.outputs.version }}
|
2023-10-30 14:34:55 +01:00
|
|
|
BUDIBASE_VERSION: ${{ steps.currenttag.outputs.version }}
|
|
|
|
|
2023-10-30 14:37:33 +01:00
|
|
|
- name: Build server docker
|
2023-10-30 14:34:55 +01:00
|
|
|
uses: docker/build-push-action@v5
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: true
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
build-args: |
|
|
|
|
BUDIBASE_VERSION=${{ env.BUDIBASE_VERSION }}
|
|
|
|
tags: ${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
|
|
|
|
file: ./packages/server/Dockerfile.v2
|
|
|
|
cache-from: type=registry,ref=${{ env.IMAGE_NAME }}:latest
|
|
|
|
cache-to: type=inline
|
|
|
|
env:
|
|
|
|
IMAGE_NAME: budibase/apps
|
2023-10-30 15:02:36 +01:00
|
|
|
IMAGE_TAG: ${{ steps.currenttag.outputs.version }}
|
2023-10-30 14:34:55 +01:00
|
|
|
BUDIBASE_VERSION: ${{ steps.currenttag.outputs.version }}
|
2023-05-29 12:21:50 +02:00
|
|
|
|
2023-10-30 14:37:33 +01:00
|
|
|
- name: Build proxy docker
|
|
|
|
uses: docker/build-push-action@v5
|
|
|
|
with:
|
2023-10-30 15:57:40 +01:00
|
|
|
context: ./hosting/proxy
|
2023-10-30 14:37:33 +01:00
|
|
|
push: true
|
2023-10-30 16:47:47 +01:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2023-10-30 14:37:33 +01:00
|
|
|
tags: ${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
|
|
|
|
file: ./hosting/proxy/Dockerfile
|
|
|
|
cache-from: type=registry,ref=${{ env.IMAGE_NAME }}:latest
|
|
|
|
cache-to: type=inline
|
|
|
|
env:
|
2023-10-30 14:53:14 +01:00
|
|
|
IMAGE_NAME: budibase/proxy
|
2023-10-30 15:02:36 +01:00
|
|
|
IMAGE_TAG: ${{ steps.currenttag.outputs.version }}
|
2023-10-30 14:37:33 +01: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
|
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-07-19 18:11:15 +02:00
|
|
|
helm package charts/budibase --version 0.0.0-master --app-version "$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-10-12 15:32:16 +02:00
|
|
|
trigger-deploy-to-qa-env:
|
2023-03-07 14:34:18 +01:00
|
|
|
needs: [release-helm-chart]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-03-07 16:14:39 +01:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2023-11-02 11:52:18 +01:00
|
|
|
- uses: peter-evans/repository-dispatch@v2
|
2022-04-26 10:47:32 +02:00
|
|
|
with:
|
2023-03-07 14:34:18 +01:00
|
|
|
repository: budibase/budibase-deploys
|
2023-10-12 15:32:16 +02:00
|
|
|
event: budicloud-qa-deploy
|
2023-03-07 14:34:18 +01:00
|
|
|
github_pat: ${{ secrets.GH_ACCESS_TOKEN }}
|
2023-11-02 11:52:18 +01:00
|
|
|
client-payload: |-
|
|
|
|
{
|
2023-11-02 13:15:39 +01:00
|
|
|
"PAYLOAD_VERSION": "${{ github.ref_name }}",
|
2023-11-02 11:52:18 +01:00
|
|
|
"REF_NAME": "${{ github.ref_name}}"
|
|
|
|
}
|