adding customization for the workflow branch #7
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: Docker Push - Superset | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- ci-cd-feat-text-to-sql # TODO - temporary | |
# workflow_run: | |
# workflows: ["Tag"] | |
# types: | |
# - completed | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_and_push_superset_poc: | |
name: Build & Push Superset Image - POC | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
pull-requests: write | |
# if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set output | |
id: vars | |
run: echo "git_tag=${{ github.ref_name }}" >> $GITHUB_OUTPUT | |
# configure iam | |
- name: Configure IAM Role | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
role-to-assume: ${{ secrets.POC_SUPERSET_DEPLOY_ARN }} | |
aws-region: us-east-1 | |
continue-on-error: false | |
- name: Build, Tag, and Push | |
run: | | |
export IMAGE_TAG=${{ steps.vars.outputs.git_tag }} | |
export ENVIRONMENT=poc | |
./scripts/docker-build-tag-and-push.sh |