mirror of https://github.com/Budibase/budibase.git
committed by
GitHub
4 changed files with 107 additions and 72 deletions
@ -0,0 +1,41 @@ |
|||||
|
name: Budibase Cloud Deploy |
||||
|
|
||||
|
on: |
||||
|
workflow_dispatch: |
||||
|
inputs: |
||||
|
version: |
||||
|
description: Budibase release version. For example - 1.0.0 |
||||
|
required: false |
||||
|
|
||||
|
jobs: |
||||
|
release: |
||||
|
runs-on: ubuntu-latest |
||||
|
|
||||
|
steps: |
||||
|
- uses: actions/checkout@v2 |
||||
|
|
||||
|
- name: Pull values.yaml from budibase-infra |
||||
|
run: | |
||||
|
curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ [c3a7a9d12] |
||||
|
-H 'Accept: application/vnd.github.v3.raw' \ |
||||
|
-o values.production.yaml \ |
||||
|
-L https://api.github.com/repos/budibase/budibase-infra/contents/kubernetes/values.yaml |
||||
|
|
||||
|
- name: Get the latest budibase release version if not specifically set |
||||
|
if: ${{ !github.event.inputs.version }} |
||||
|
id: version |
||||
|
run: | |
||||
|
sudo apt-get install -y jq |
||||
|
release_version=$(cat lerna.json | jq -r '.version') |
||||
|
echo "::set-output name=release_version::$release_version" |
||||
|
|
||||
|
- uses: peymanmortazavi/eks-helm-deploy@v1 |
||||
|
with: |
||||
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} |
||||
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |
||||
|
aws-region: eu-west-1 |
||||
|
cluster-name: budibase-eks-production |
||||
|
config-files: values.production.yaml |
||||
|
namespace: budibase |
||||
|
values: appVersion=v${{ github.event.inputs.version || github.steps.version.outputs.release_version }} |
||||
|
name: budibase-prod |
||||
@ -1,42 +0,0 @@ |
|||||
name: Budibase Release Helm Charts |
|
||||
|
|
||||
on: |
|
||||
workflow_dispatch: |
|
||||
|
|
||||
jobs: |
|
||||
release: |
|
||||
runs-on: ubuntu-latest |
|
||||
|
|
||||
steps: |
|
||||
- uses: actions/checkout@v2 |
|
||||
with: |
|
||||
fetch-depth: 0 |
|
||||
|
|
||||
- uses: actions/setup-node@v1 |
|
||||
with: |
|
||||
node-version: 14.x |
|
||||
- run: yarn |
|
||||
- run: yarn bootstrap |
|
||||
|
|
||||
- name: 'Get Previous tag' |
|
||||
id: previoustag |
|
||||
uses: "WyriHaximus/github-action-get-previous-tag@v1" |
|
||||
|
|
||||
- name: Install Helm |
|
||||
uses: azure/setup-helm@v1 |
|
||||
with: |
|
||||
version: v3.4.0 |
|
||||
|
|
||||
- run: yarn release:helm |
|
||||
env: |
|
||||
BUDIBASE_RELEASE_VERSION: ${{ steps.previoustag.outputs.tag }} |
|
||||
|
|
||||
- name: Configure Git |
|
||||
run: | |
|
||||
git config user.name "Budibase Helm Bot" |
|
||||
git config user.email "<>" |
|
||||
|
|
||||
- name: Run chart-releaser |
|
||||
uses: helm/chart-releaser-action@v1.2.1 |
|
||||
env: |
|
||||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |
|
||||
Loading…
Reference in new issue