Skip to content

Commit

Permalink
CI: generate openapi contract before asking for contract diff
Browse files Browse the repository at this point in the history
  • Loading branch information
paulRbr committed Oct 16, 2023
1 parent 5b9f449 commit 552efab
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,32 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build docker image
uses: docker/build-push-action@v5
with:
context: ./api
target: php_dev
tags: local:latest
load: true
cache-from: type=gha
cache-to: type=gha,mode=max
push: false
- name: Generate OpenAPI contract
uses: addnab/docker-run-action@v3
with:
image: local:latest
options: -v ${{github.workspace}}/api:/srv/app -v /srv/app/vendor
run: |
php bin/console api:openapi:export > openapi.json
- name: Comment pull request with API diff
uses: bump-sh/github-action@v1
with:
doc: apiplatform-test-demo
token: ${{secrets.BUMP_TOKEN}}
file: docs/openapi.json
file: openapi.json
command: diff
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 552efab

Please sign in to comment.