Skip to content

Commit

Permalink
ci: prepend targetBranch with refs/tags
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarrio committed May 4, 2023
1 parent d4c8a85 commit 5872cf5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/split_monorepo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
privateKey: ${{ secrets.SSH_PRIVATE_KEY }}
targetOrg: open-feature-php
targetRepo: dd-trace-hook
targetBranch: ${{ github.event.release.tag_name }}
targetBranch: refs/tags/${{ github.event.release.tag_name }}
filterArguments: '--subdirectory-filter hooks/DDTrace/ --force'

split-hook-otel:
Expand All @@ -29,7 +29,7 @@ jobs:
privateKey: ${{ secrets.SSH_PRIVATE_KEY }}
targetOrg: open-feature-php
targetRepo: otel-hook
targetBranch: ${{ github.event.release.tag_name }}
targetBranch: refs/tags/${{ github.event.release.tag_name }}
filterArguments: '--subdirectory-filter hooks/OpenTelemetry/ --force'

split-hook-validator:
Expand All @@ -43,7 +43,7 @@ jobs:
privateKey: ${{ secrets.SSH_PRIVATE_KEY }}
targetOrg: open-feature-php
targetRepo: validators-hook
targetBranch: ${{ github.event.release.tag_name }}
targetBranch: refs/tags/${{ github.event.release.tag_name }}
filterArguments: '--subdirectory-filter hooks/Validators/ --force'

split-provider-cloudbees:
Expand All @@ -57,7 +57,7 @@ jobs:
privateKey: ${{ secrets.SSH_PRIVATE_KEY }}
targetOrg: open-feature-php
targetRepo: cloudbees-provider
targetBranch: ${{ github.event.release.tag_name }}
targetBranch: refs/tags/${{ github.event.release.tag_name }}
filterArguments: '--subdirectory-filter providers/CloudBees/ --force'

split-provider-flagd:
Expand All @@ -71,7 +71,7 @@ jobs:
privateKey: ${{ secrets.SSH_PRIVATE_KEY }}
targetOrg: open-feature-php
targetRepo: flagd-provider
targetBranch: ${{ github.event.release.tag_name }}
targetBranch: refs/tags/${{ github.event.release.tag_name }}
filterArguments: '--subdirectory-filter providers/Flagd/ --force'

split-provider-split:
Expand All @@ -85,5 +85,5 @@ jobs:
privateKey: ${{ secrets.SSH_PRIVATE_KEY }}
targetOrg: open-feature-php
targetRepo: split-provider
targetBranch: ${{ github.event.release.tag_name }}
targetBranch: refs/tags/${{ github.event.release.tag_name }}
filterArguments: '--subdirectory-filter providers/Split/ --force'

0 comments on commit 5872cf5

Please sign in to comment.