Skip to content

Commit

Permalink
chore: add action to update develop on tags (#2695)
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo-cavazzi committed Feb 16, 2022
1 parent 224f492 commit e087198
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/test_deploy.yml
Expand Up @@ -840,6 +840,19 @@ jobs:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: make publish-lock-package

update-develop-branch:
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
ref: 'develop'
- name: merge changes from master
run: |
git merge master
git push
build-images:
runs-on: ubuntu-latest
needs:
Expand Down

0 comments on commit e087198

Please sign in to comment.