Skip to content
Snippets Groups Projects
Unverified Commit ca226970 authored by Tim Kaune's avatar Tim Kaune
Browse files

Remove workflow step filters for git sync

You can push multiple branches and tags at the same time using git push
--atomic. In this case, only master was synced, not the tags. Always run
both steps just in case.
parent abf099a7
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: git-sync-master
if: ${{ github.ref_type == 'branch' }}
uses: wei/git-sync@v3
with:
source_repo: "lepus2589/LoadStaticSharedTargets"
......@@ -20,7 +19,6 @@ jobs:
destination_branch: "master"
destination_ssh_private_key: ${{ secrets.DESTINATION_SSH_PRIVATE_KEY }}
- name: git-sync-tags
if: ${{ github.ref_type == 'tag' }}
uses: wei/git-sync@v3
with:
source_repo: "lepus2589/LoadStaticSharedTargets"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment