Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 0 additions & 48 deletions .github/workflows/dev-release.yml

This file was deleted.

31 changes: 30 additions & 1 deletion .github/workflows/prod-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,36 @@ jobs:
run: |-
gcloud builds submit --quiet --substitutions="COMMIT_SHA=${{ github.event.workflow_run.head_sha }},_CUSTOM_BRANCH_TAG=gcloud-prod" --config .cloudbuild/docker.cloudbuild.yaml --gcs-log-dir=gs://seqr-github-actions-logs/logs .

helm_update:
tgg_helm_update:
runs-on: ubuntu-latest
needs: docker
steps:
- name: Retrieve tgg-helm repo for broad seqr chart
uses: actions/checkout@v3
with:
repository: broadinstitute/tgg-helm
token: ${{ secrets.SEQR_VERSION_UPDATE_TOKEN }}
ref: main
persist-credentials: false
fetch-depth: 0

- name: update image tag in the lib broad seqr chart
uses: mikefarah/yq@v4.22.1
with:
cmd: >
yq -i '.seqr-platform.pipeline-runner.image.tag = "${{ github.event.workflow_run.head_sha }}"' charts/lib-broad-seqr/values.yaml

- name: Commit and Push changes
uses: Andro999b/push@v1.3
with:
repository: broadinstitute/tgg-helm
branch: main
github_token: ${{ secrets.SEQR_VERSION_UPDATE_TOKEN }}
author_email: ${{ github.actor }}@users.noreply.github.com
author_name: tgg-automation
message: "Update pipeline-runner dev & prod release docker tag to ${{ github.event.workflow_run.head_sha }}"

seqr_helm_update:
runs-on: ubuntu-latest
needs: docker
steps:
Expand Down