Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

Setup pixi

Setup pixi #6

Workflow file for this run

name: Deploy
on:
push:
branches:
- singhals/add-some-cube
permissions:
id-token: write # This is required for requesting tghe JWT
contents: read # This is required for actions/checkout
jobs:
deploy-cube:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::471881062455:role/system/github_actions_role
role-session-name: GitHub_to_AWS_sync_svc_cube
aws-region: us-east-1
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/[email protected]
with:
mask-password: "false"
- name: Build, tag, and push docker image to Amazon ECR
env:
REGISTRY: ${{ steps.login-ecr.outputs.registry }}
REPOSITORY: sync-svc-cube
IMAGE_TAG: "cubejs/cube:${{ github.sha }}"
run: |
docker build -t $REGISTRY/$REPOSITORY:$IMAGE_TAG .
docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG
- uses: prefix-dev/[email protected]
with:
cache: true
locked: true
- name: Update cube-api Task Definition with latest image
run: pixi run python scripts/update_task.py --task-definition cube_api --container-name cube-api --image cubejs/cube:$IMAGE_TAG
- name: Update cube-refresh-worker Task Definition with latest image
run: pixi run python scripts/update_task.py --task-definition cube_refresh_worker --container-name cube-refresh-worker --image cubejs/cube:$IMAGE_TAG