Skip to content

Commit

Permalink
ci(dashboard): send event for version update (#1870)
Browse files Browse the repository at this point in the history
  • Loading branch information
deepankarm committed Feb 4, 2021
1 parent 28cc7c8 commit 4e218e8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/tag.yml
Expand Up @@ -58,6 +58,20 @@ jobs:
git config --local user.name "Jina Dev Bot"
git add . && git commit -m "update ${{env.JINA_VERSION}} due to ${{github.event_name}} on ${{github.repository}}" && git push
update-dashboard-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
JINA_VERSION=${GITHUB_REF/refs\/tags\/v/}
echo "JINA_VERSION=${JINA_VERSION}" >> $GITHUB_ENV
- name: Dashboard version update
uses: benc-uk/workflow-dispatch@v1
with:
workflow: Sync version with Jina core
repo: jina-ai/dashboard
token: ${{ secrets.JINA_DEV_BOT }}
inputs: '{ "version": "${{ env.JINA_VERSION }}" }'

update-doc:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 4e218e8

Please sign in to comment.