name: Budibase Release concurrency: release on: push: tags: - "v[0-9]+.[0-9]+.[0-9]+" # Exclude all pre-releases - "!v*[0-9]+.[0-9]+.[0-9]+-*" workflow_dispatch: inputs: tags: description: "Release tag" required: true type: boolean env: # Posthog token used by ui at build time POSTHOG_TOKEN: phc_bIjZL7oh2GEUd2vqvTBH8WvrX0fWTFQMs6H5KQxiUxU INTERCOM_TOKEN: ${{ secrets.INTERCOM_TOKEN }} SENTRY_DSN: ${{ secrets.SENTRY_DSN }} PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} jobs: release-images: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: submodules: true token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} fetch-depth: 0 - name: Fail if branch is not master if: github.ref != 'refs/heads/master' run: | echo "Ref is not master, you must run this job from master." // Change to "exit 1" when merged. Left to 0 to not fail all the pipelines and not to cause noise exit 0 - uses: actions/setup-node@v1 with: node-version: 14.x - run: yarn install --frozen-lockfile - 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" echo "Updating dependencies" node scripts/syncLocalDependencies.js $version echo "Syncing yarn workspace" yarn - run: yarn lint - run: yarn build --configuration=production - run: yarn build:sdk - 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 }} - name: Reset pro dependencies run: node scripts/resetProDependencies.js - name: Publish budibase packages to NPM env: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} RELEASE_VERSION_TYPE: ${{ github.event.inputs.versioning }} run: | # setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default git config --global user.name "Budibase Release Bot" git config --global user.email "<>" git submodule foreach git commit -a -m 'Release process' git commit -a -m 'Release process' echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} >> .npmrc yarn release 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 - 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 # 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 fetch mkdir sync echo "Packaging chart to sync dir" helm package charts/budibase --version 0.0.0-master --app-version v"$RELEASE_VERSION" --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: ${{ env.RELEASE_VERSION }}" git push deploy-to-legacy-preprod-env: needs: [release-images] uses: ./.github/workflows/deploy-preprod.yml secrets: inherit # Trigger deploy to new EKS preprod environment trigger-deploy-to-preprod-env: needs: [release-helm-chart] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Get the latest budibase release version id: version run: | git pull 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 event: budicloud-preprod-deploy github_pat: ${{ secrets.GH_ACCESS_TOKEN }}