fix(deps): update module github.com/gophercloud/utils/v2 to v2.0.0-20… #801
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: markdown | |
on: | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
generate-markdown: | |
runs-on: ubuntu-latest | |
container: | |
image: quay.io/goswagger/swagger | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: swagger generate markdown --copyright-file COPYRIGHT.txt --output docs/api.md | |
- name: Commit API Doc | |
run: | | |
git config --global --add safe.directory /__w/andromeda/andromeda | |
git config --global user.name 'GitHub Action' | |
git config --global user.email '[email protected]' | |
git commit -am "Update docs/api.md" || true | |
git push |