Skip to content

Commit

Permalink
fix: syncing back tags to dev
Browse files Browse the repository at this point in the history
  • Loading branch information
creyD committed Oct 29, 2024
1 parent eb64874 commit a6ded91
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,15 @@ jobs:
git tag ${{ steps.git_version.outputs.version }}
git push origin ${{ steps.git_version.outputs.version }}
- name: Sync tag to dev branch
if: github.ref_name == 'master'
run: |
git fetch origin dev
git checkout dev
git merge --no-ff ${{ steps.git_version.outputs.version }}
git push origin dev
git checkout master
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit a6ded91

Please sign in to comment.