update ci #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dev - Build and Deploy on main | |
on: | |
push: | |
branches: | |
- main | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
runs-on: mdb-dev | |
env: | |
AWS_REGION: us-east-2 | |
steps: | |
- name: Generate token | |
# Use the Github App private key to request an installation | |
# token with read-only access to the organization's private | |
# repositories. This token is then used in the checkout step | |
# (but not in subsequent steps that create releases and upload | |
# assets, those still use the default token that has write | |
# access to the current repository). | |
id: generate_token | |
uses: tibdex/github-app-token@v1 | |
with: | |
app_id: ${{ secrets.ACTION_APP_ID }} | |
private_key: ${{ secrets.ACTION_APP_KEY }} | |
- name: Checkout tag | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
token: ${{ steps.generate_token.outputs.token }} | |
- name: Pull MindsDB Github Actions | |
uses: actions/checkout@v4 | |
with: | |
repository: mindsdb/github-actions | |
path: github-actions | |
ssh-key: ${{ secrets.GH_ACTIONS_PULL_SSH }} | |
- uses: ./github-actions/setup-env | |
- uses: ./github-actions/build-push-ecr | |
with: | |
module-name: ${{ env.CI_REPOSITORY_SLUG }} | |
build-for-environment: dev | |
extra-build-args: -f docker/Dockerfile | |
deploy: | |
runs-on: mdb-dev | |
needs: build | |
environment: | |
name: dev | |
url: https://hashnode.dev.mindsdb.com/blog | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Pull MindsDB Github Actions | |
uses: actions/checkout@v4 | |
with: | |
repository: mindsdb/github-actions | |
path: github-actions | |
ssh-key: ${{ secrets.GH_ACTIONS_PULL_SSH }} | |
- uses: ./github-actions/setup-env | |
- uses: DevOps-Nirvana/aws-helm-multi-deploy-nodocker@v2 | |
with: | |
environment-slug: dev | |
k8s-namespace: dev | |
image-tag: development-${{ env.SLUG }} | |
timeout: 600s |