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 4f75fc0
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,26 @@ 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: .
file: ./api/Dockerfile
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 }}:/work
run: |
php bin/console api:openapi:export > /work/docs/openapi.json
- name: Comment pull request with API diff
uses: bump-sh/github-action@v1
with:
Expand Down

0 comments on commit 4f75fc0

Please sign in to comment.