feat: redis caching #188
This file contains 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: Generate OpenAPI Document | |
on: | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
generate-open-api-document: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Start containers | |
run: docker-compose -f "docker-compose.yml" up -d --build | |
- name: Check the deployed service URL | |
uses: jtalk/url-health-check-action@v3 | |
with: | |
url: http://localhost:8080/api-docs.yaml | |
max-attempts: 10 | |
retry-delay: 5s | |
retry-all: true | |
- name: Create json file | |
run: | | |
curl -o docs/open-api.yaml http://localhost:8080/api-docs.yaml | |
- name: Commit changes | |
run: | | |
git config --global user.name 'Git Actions' | |
git config --global user.email 'no-reply@github.com' | |
git add docs/open-api.yaml | |
if git status | grep -ic "Changes to be committed:"; then | |
echo "Committing changes" | |
git commit -m "docs: update open-api.yaml" | |
git push | |
else | |
echo "No changes" | |
fi | |
- name: Stop containers | |
if: always() | |
run: docker-compose -f "docker-compose.yml" down |