[Common] Remove get() Requirement from IModelRepository #15
Workflow file for this run
This file contains 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: Release on: push: tags: - 'v[0-9]+.[0-9]+.[0-9]+' - '!v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+' workflow_dispatch: jobs: CreateRelease: name: CreateRelease uses: EncoreDigitalGroup/.github/.github/workflows/createRelease.yml@v1 with: generate_release_notes: true is_draft: false secrets: token: ${{ secrets.GITHUB_TOKEN }} SplitMonorepo: runs-on: ubuntu-latest strategy: fail-fast: false matrix: package: - Common - Logger steps: - uses: actions/checkout@v3 - id: previousTag uses: 'WyriHaximus/github-action-get-previous-tag@master' - name: Monorepo Split of ${{ matrix.package }} uses: danharrin/[email protected] env: GITHUB_TOKEN: ${{ secrets.GH_MONOREPO_SPLIT_TOKEN }} with: package_directory: 'src/${{ matrix.package }}' repository_organization: 'PHPGenesis' repository_name: '${{ matrix.package }}' branch: main tag: ${{ steps.previousTag.outputs.tag }} user_name: 'GenesisBot' user_email: '[email protected]' SplitMonorepoServices: runs-on: ubuntu-latest strategy: fail-fast: false matrix: package: - AmazonWebServices steps: - uses: actions/checkout@v3 - id: previousTag uses: 'WyriHaximus/github-action-get-previous-tag@master' - name: Monorepo Split of ${{ matrix.package }} uses: danharrin/[email protected] env: GITHUB_TOKEN: ${{ secrets.GH_MONOREPO_SPLIT_TOKEN }} with: package_directory: 'src/Services/${{ matrix.package }}' repository_organization: 'PHPGenesis' repository_name: '${{ matrix.package }}' branch: main tag: ${{ steps.previousTag.outputs.tag }} user_name: 'GenesisBot' user_email: '[email protected]' |