1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00
budibase/.github/workflows/release-selfhost.yml

127 lines
4.1 KiB
YAML
Raw Normal View History

2021-12-16 23:55:32 +13:00
name: Budibase Release Selfhost
2021-10-08 22:37:08 +13:00
on:
2023-06-07 01:09:35 +12:00
workflow_dispatch:
2021-10-08 22:37:08 +13:00
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Fail if not a tag
run: |
if [[ $GITHUB_REF != refs/tags/* ]]; then
echo "Workflow Dispatch can only be run on tags"
exit 1
fi
2021-10-08 22:37:08 +13:00
- uses: actions/checkout@v2
2023-06-07 01:09:35 +12:00
with:
2023-06-08 01:01:34 +12:00
submodules: true
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
2023-06-07 01:09:35 +12:00
fetch-depth: 0
- name: Fail if tag is not in master
run: |
if ! git merge-base --is-ancestor ${{ github.sha }} origin/master; then
echo "Tag is not in master. This pipeline can only execute tags that are present on the master branch"
exit 1
fi
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- 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
- name: Tag and release Docker images (Self Host)
2023-06-07 01:09:35 +12:00
run: |
2021-10-08 22:37:08 +13:00
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
release_tag=v${{ env.RELEASE_VERSION }}
# Pull apps and worker images
docker pull budibase/apps:$release_tag
docker pull budibase/worker:$release_tag
docker pull budibase/proxy:$release_tag
# Tag apps and worker images
docker tag budibase/apps:$release_tag budibase/apps:$SELFHOST_TAG
docker tag budibase/worker:$release_tag budibase/worker:$SELFHOST_TAG
2022-02-12 07:40:28 +13:00
docker tag budibase/proxy:$release_tag budibase/proxy:$SELFHOST_TAG
2023-06-07 01:09:35 +12:00
# Push images
docker push budibase/apps:$SELFHOST_TAG
docker push budibase/worker:$SELFHOST_TAG
2022-02-12 07:40:28 +13:00
docker push budibase/proxy:$SELFHOST_TAG
2021-10-08 22:37:08 +13:00
env:
DOCKER_USER: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_API_KEY }}
SELFHOST_TAG: latest
- name: Bootstrap and build (CLI)
2022-01-14 03:31:17 +13:00
run: |
yarn
yarn bootstrap
2022-01-14 03:31:17 +13:00
yarn build
2022-03-11 00:08:02 +13:00
- name: Build OpenAPI spec
run: |
pushd packages/server
yarn
2022-03-11 00:17:15 +13:00
yarn specs
popd
2023-06-07 01:09:35 +12:00
- name: Setup Helm
2021-12-16 07:46:28 +13:00
uses: azure/setup-helm@v1
id: helm-install
2021-12-17 02:31:40 +13: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
2021-12-22 04:05:43 +13:00
- name: Build and release helm chart
2023-06-07 01:09:35 +12:00
run: |
2021-12-22 04:05:43 +13:00
git config user.name "Budibase Helm Bot"
git config user.email "<>"
git reset --hard
2023-06-06 22:27:08 +12:00
git fetch
mkdir sync
echo "Packaging chart to sync dir"
helm package charts/budibase --version "$RELEASE_VERSION" --app-version "$RELEASE_VERSION" --destination sync
echo "Packaging successful"
2021-12-22 04:39:40 +13:00
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"
2021-12-22 04:05:43 +13:00
git add -A
git commit -m "Helm Release: ${{ env.RELEASE_VERSION }}"
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Perform Github Release
uses: softprops/action-gh-release@v1
with:
2021-12-17 04:04:08 +13:00
name: v${{ env.RELEASE_VERSION }}
2021-12-18 02:58:03 +13:00
tag_name: v${{ env.RELEASE_VERSION }}
2022-01-14 03:31:17 +13:00
generate_release_notes: true
files: |
packages/cli/build/cli-win.exe
packages/cli/build/cli-linux
2022-02-12 07:40:28 +13:00
packages/cli/build/cli-macos
packages/server/specs/openapi.yaml
packages/server/specs/openapi.json
2022-05-13 20:59:40 +12:00
- name: Discord Webhook Action
uses: tsickert/discord-webhook@v4.0.0
with:
webhook-url: ${{ secrets.PROD_DEPLOY_WEBHOOK_URL }}
content: "Self Host Deployment Complete: ${{ env.RELEASE_VERSION }} deployed to Self Host."
embed-title: ${{ env.RELEASE_VERSION }}