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

0 comments on commit 66843b9

Please sign in to comment.