test(storybook): fix processing column story (#7287) #1028
This file contains hidden or 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: Non-prod release | |
| on: | |
| #TODO: Trigger from testing action after tests pass | |
| push: | |
| branches: | |
| - 'feature/du' | |
| - 'feature/tri' | |
| - 'feature/unu' | |
| - 'public-beta' | |
| - 'main' | |
| workflow_dispatch: | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| packages: write | |
| env: | |
| CI_REGISTRY_IMAGE: ghcr.io/kobotoolbox/kpi | |
| outputs: | |
| kpi_image_sha: ${{ steps.sha.outputs.sha }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Store commit SHA | |
| id: sha | |
| run: echo "sha=${GITHUB_SHA}" >> $GITHUB_OUTPUT | |
| - name: Configure AWS Credentials | |
| uses: aws-actions/configure-aws-credentials@v6.1.1 | |
| with: | |
| aws-region: us-east-1 | |
| role-to-assume: "arn:aws:iam::917503078660:role/gha_all_repos" | |
| role-duration-seconds: 2200 | |
| role-session-name: ghithub_actions_${{ github.run_id }} | |
| - uses: alexellis/arkade-get@master # https://github.com/alexellis/arkade-get?tab=readme-ov-file#why-do-we-use-use-master | |
| with: | |
| kubectl: ${{ vars.KUBECTL_VERSION }} | |
| helm: ${{ vars.HELM_VERSION }} | |
| - name: Update kubeconfig | |
| run: | | |
| aws eks --region us-east-1 update-kubeconfig --name kobo | |
| - name: Log in to GitHub Container Registry | |
| uses: docker/login-action@v4 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: build image | |
| run: | | |
| CI_COMMIT_REF_NAME_SANITIZED=${GITHUB_REF_NAME/\#/-} | |
| CI_COMMIT_REF_NAME_SANITIZED=${GITHUB_REF_NAME//\//-} | |
| docker pull $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME_SANITIZED || true | |
| docker build --cache-from $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME_SANITIZED --tag $CI_REGISTRY_IMAGE:$GITHUB_SHA --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME_SANITIZED . | |
| docker push $CI_REGISTRY_IMAGE:$GITHUB_SHA | |
| docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME_SANITIZED | |
| - name: Deploy to beta | |
| if: github.ref_name == 'public-beta' | |
| run: | | |
| helm -n kobo-dev upgrade beta oci://ghcr.io/kobotoolbox/kobo --atomic --set-string kpi.version=${GITHUB_SHA} --set kpi.image.repository=$CI_REGISTRY_IMAGE --set-string enketo.version=${{ vars.ENKETO_VERSION }} --reuse-values | |
| - name: Deploy to feature branch | |
| if: startsWith(github.ref_name, 'feature/') | |
| run: | | |
| BRANCH_TITLE=${GITHUB_REF_NAME#feature/} | |
| helm -n kobo-dev upgrade --install $BRANCH_TITLE oci://ghcr.io/kobotoolbox/kobo --atomic --set-string kpi.version=${GITHUB_SHA} --set kpi.image.repository=$CI_REGISTRY_IMAGE --set-string enketo.version=${{ vars.ENKETO_VERSION }} --reuse-values | |
| trigger-main-deploy: | |
| needs: deploy | |
| runs-on: ubuntu-latest | |
| if: github.ref_name == 'main' | |
| steps: | |
| - name: Generate GitHub App Token | |
| id: app-token | |
| uses: actions/create-github-app-token@v3 | |
| with: | |
| client-id: ${{ secrets.KOBO_BOT_CLIENT_ID }} | |
| private-key: ${{ secrets.KOBO_BOT_PRIVATE_KEY }} | |
| owner: kobotoolbox | |
| repositories: "devops" | |
| - name: Trigger kfmain deploy build | |
| uses: benc-uk/workflow-dispatch@v1 | |
| with: | |
| workflow: deploy-kfmain.yml | |
| repo: kobotoolbox/devops | |
| ref: instance/kfmain | |
| token: ${{ steps.app-token.outputs.token }} | |
| inputs: | | |
| { | |
| "kpi_image_sha": "${{ needs.deploy.outputs.kpi_image_sha }}" | |
| } | |
| notify-success: | |
| needs: | |
| - deploy | |
| if: ${{ github.ref_name != 'main' }} | |
| uses: './.github/workflows/zulip.yml' | |
| secrets: inherit | |
| with: | |
| topic: "deployments to ${{ github.ref_name }}" | |
| content: ":check: Successfully deployed! Latest commit: [\"$COMMIT_TITLE\"](${{ github.event.compare }})" | |
| notify-failure: | |
| needs: | |
| - deploy | |
| - trigger-main-deploy | |
| if: ${{ !cancelled() && failure() }} | |
| uses: './.github/workflows/zulip.yml' | |
| secrets: inherit | |
| with: | |
| topic: "deployments to ${{ github.ref_name }}" | |
| content: ":warning: @*devs*, [run #${{github.run_number}}](${{github.server_url}}/${{github.repository}}/actions/runs/${{github.run_id}}) failed on `${{ github.ref_name }}` at [\"$COMMIT_TITLE\"](${{ github.event.compare }})" |