Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

feat: format indent swagger.yml #807

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 38 additions & 38 deletions .github/workflows/swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,47 +15,47 @@ concurrency:
cancel-in-progress: false

jobs:
build:
name: Swagger autogen docs
runs-on: ubuntu-latest
build:
name: Swagger autogen docs
runs-on: ubuntu-latest

steps:
- name: checkout
uses: actions/checkout@v2
steps:
- name: checkout
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
cache: true
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
cache: true

- name: install swag cli
run: go install github.com/swaggo/swag/cmd/swag@latest
- name: install swag cli
run: go install github.com/swaggo/swag/cmd/swag@latest

- name: swag init
run: ./scripts/gen_swagger_json.sh
- name: swag init
run: ./scripts/gen_swagger_json.sh

deploy:
if: ${{ always() }}
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
name: github pages deploy swagger docs
runs-on: ubuntu-latest

steps:
- name: checkout
uses: actions/checkout@v2

- name: Setup Pages
uses: actions/configure-pages@v3

- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: '.'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
if: ${{ always() }}
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
name: github pages deploy swagger docs
runs-on: ubuntu-latest

steps:
- name: checkout
uses: actions/checkout@v2

- name: Setup Pages
uses: actions/configure-pages@v3

- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: "."

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
Loading