ci: revert versions to next major to support new deployment structure #170
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: split-monorepo | |
on: | |
release: | |
types: [published] | |
push: | |
branches: | |
- split | |
jobs: | |
split-repositories: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# Structure of the config tuple is: | |
# 0: Type of package (e.g. open-feature/flagd-*provider*) | |
# 1: Name of package (sans-org-prefix e.g. open-feature/*flagd*-provider) | |
# 2: Name of subdirectory (e.g. providers/*Flagd*) | |
config: | |
- [hook, dd-trace, DDTrace] | |
# - [hook, otel, OpenTelemetry] | |
# - [hook, validator, Validators] | |
# - [provider, cloudbees, CloudBees] | |
# - [provider, flagd, Flagd] | |
# - [provider, split, Split] | |
# - [provider, go-feature-flag, GoFeatureFlag] | |
steps: | |
- name: checkout | |
run: git clone "$GITHUB_SERVER_URL"/"$GITHUB_REPOSITORY" "$GITHUB_WORKSPACE" && cd "$GITHUB_WORKSPACE" && git checkout "$GITHUB_SHA" | |
- name: push-hook-dd-trace | |
uses: tcarrio/git-filter-repo-docker-action@v1.4.0 | |
with: | |
privateKey: ${{ secrets.SSH_PRIVATE_KEY }} | |
targetOrg: open-feature-php | |
targetRepo: ${{ matrix.config[1] }}-${{ matrix.config[0] }} | |
# targetBranch: refs/tags/${{ github.event.release.tag_name }} | |
tagFilter: ^open-feature/${{ matrix.config[1] }}- | |
filterArguments: | | |
--subdirectory-filter "${{matrix.config[0] }}s/${{ matrix.config[2] }}/" \ | |
--tag-rename "open-feature/${{ matrix.config[1] }}-${{ matrix.config[0] }}-:" \ | |
--force |