Skip to content

Commit

Permalink
chore(ci): Automatic update BE QA client on new release
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Guerinoni <[email protected]>
  • Loading branch information
guerinoni committed Nov 29, 2023
1 parent 48ac7fc commit 7e9cab5
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/update-be.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Update BE QA version
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+

workflow_dispatch:

jobs:
steps:
- uses: actions/checkout@v4
with:
repository: GetStream/chat
path: chat
token: ${{ secrets.STREAM_CI_BOT_TOKEN }}
ref: main
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 18.x
cache: 'yarn'
- name: Open PR
run: |
cd chat
git config --global user.email "[email protected]"
git config --global user.name "GH Action CI Stream"
git switch -c update-qa-version-$(git describe --tags $(git rev-list --tags --max-count=4) | sort | head -n 1 | cut -d '-' -f 4)
cd qa
yarn add @stream-io/video-client
cd ..
git add .
git commit -m "Update QA version"
git push --set-upstream origin $(git rev-parse --abbrev-ref HEAD) --force-with-lease
gh pr create --fill
env:
GITHUB_TOKEN: ${{ secrets.STREAM_CI_BOT_TOKEN }}

0 comments on commit 7e9cab5

Please sign in to comment.