-
Notifications
You must be signed in to change notification settings - Fork 219
61 lines (57 loc) · 1.78 KB
/
release_gem.yml
File metadata and controls
61 lines (57 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Release gem
on:
repository_dispatch:
types:
- release-triggered
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: '4.0.2'
- 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@v6
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 }}"
}