release-triggered #47
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: Release gem | |
| on: | |
| repository_dispatch: | |
| types: | |
| - release-triggered | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.4.8' | |
| - run: | | |
| gem install bundler -v 2.4 | |
| bundle install | |
| - uses: pact-foundation/pact-cli@main | |
| - run: pact plugin install --yes https://github.com/mefellows/pact-matt-plugin/releases/tag/v0.1.1 | |
| - name: Test | |
| run: bundle exec rake | |
| release: | |
| needs: test | |
| runs-on: ubuntu-latest | |
| outputs: | |
| gem_name: ${{ steps.release-gem.outputs.gem_name }} | |
| version: ${{ steps.release-gem.outputs.version }} | |
| increment: ${{ steps.release-gem.outputs.increment }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - id: release-gem | |
| uses: pact-foundation/release-gem@v1 | |
| env: | |
| GEM_HOST_API_KEY: '${{ secrets.RUBYGEMS_API_KEY }}' | |
| GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
| INCREMENT: '${{ github.event.client_payload.increment }}' | |
| notify-gem-released: | |
| needs: release | |
| strategy: | |
| matrix: | |
| repository: [pact-foundation/pact-docker-cli, pact-foundation/pact-standalone] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Notify ${{ matrix.repository }} of gem release | |
| uses: peter-evans/repository-dispatch@v4 | |
| with: | |
| token: ${{ secrets.GHTOKENFORPACTCLIRELEASE }} | |
| repository: ${{ matrix.repository }} | |
| event-type: gem-released | |
| client-payload: | | |
| { | |
| "name": "${{ needs.release.outputs.gem_name }}", | |
| "version": "${{ needs.release.outputs.version }}", | |
| "increment": "${{ needs.release.outputs.increment }}" | |
| } |