2022-06-20 13:14:16 +02:00
|
|
|
name: Budibase Deploy Production
|
2021-12-15 18:43:12 +01:00
|
|
|
|
|
|
|
on:
|
2023-06-06 15:11:37 +02:00
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
version:
|
|
|
|
description: Budibase release version. For example - 1.0.0
|
|
|
|
required: false
|
2021-12-15 18:43:12 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-06-14 17:18:09 +02:00
|
|
|
- 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-12-15 18:43:12 +01:00
|
|
|
- uses: actions/checkout@v2
|
2023-06-14 17:18:09 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-12-15 18:43:12 +01:00
|
|
|
|
2023-06-14 17:18:09 +02:00
|
|
|
- name: Fail if tag is not in master
|
2023-06-06 15:11:37 +02:00
|
|
|
run: |
|
2023-06-14 17:18:09 +02:00
|
|
|
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
|
2023-06-06 15:11:37 +02:00
|
|
|
|
2021-12-16 13:38:21 +01:00
|
|
|
- name: Get the latest budibase release version
|
2021-12-15 18:43:12 +01:00
|
|
|
id: version
|
2023-06-06 15:11:37 +02:00
|
|
|
run: |
|
|
|
|
if [ -z "${{ github.event.inputs.version }}" ]; then
|
|
|
|
release_version=$(cat lerna.json | jq -r '.version')
|
|
|
|
else
|
|
|
|
release_version=${{ github.event.inputs.version }}
|
|
|
|
fi
|
2021-12-16 15:36:34 +01:00
|
|
|
echo "RELEASE_VERSION=$release_version" >> $GITHUB_ENV
|
2023-06-06 15:11:37 +02:00
|
|
|
|
2023-06-14 17:18:09 +02:00
|
|
|
- uses: passeidireto/trigger-external-workflow-action@main
|
|
|
|
env:
|
|
|
|
PAYLOAD_VERSION: ${{ env.RELEASE_VERSION }}
|
2021-12-17 14:58:03 +01:00
|
|
|
with:
|
2023-06-14 17:18:09 +02:00
|
|
|
repository: budibase/budibase-deploys
|
|
|
|
event: budicloud-prod-deploy
|
|
|
|
github_pat: ${{ secrets.GH_ACCESS_TOKEN }}
|