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

Commit

Permalink
Swagger workflow 2 (#253)
Browse files Browse the repository at this point in the history
* [Chore] Add swag fmt to `mage spec`

* Keep CI in sync with toolchain

* We're not going crazy

* Remove unnecessary installation

* typo

* moved spec step after git checkout

* Do not fetch history

* fetch - but without history

* setting ref

* Bump down checkout action

* v3 with repository

* changing the user

* use PAT for publish of swagger docs

* use publish action instead of script

* using a separate workflow

* pr trigger

* syntax

* helps to checkout the code

* simplify

* trying push

* checkout

* adding in github token reference

* trying the previoous approach with a twist

* push as script

* trying to push back to the repo

* set token like this

* set token

* set token

* set token

* expand variables helps

* using clone url

* push to HEAD

* cleaning up full url

* oh no now using sed

* giving up - this will generate doc if needed on push to main

* can't push to protected branch so have a swagger one

Co-authored-by: Andres Uribe Gonzalez <[email protected]>
Co-authored-by: Andres Uribe <[email protected]>
Co-authored-by: Gabe <[email protected]>
  • Loading branch information
4 people authored Jan 12, 2023
1 parent a3d5e1b commit 56ec92c
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 39 deletions.
37 changes: 0 additions & 37 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,43 +29,6 @@ jobs:
- name: Check Vulnerabilities
run: mage -v vuln

generate-spec:
runs-on: ubuntu-latest
steps:
- name: fetch history
uses: actions/checkout@v3
with:
fetch-depth: 0

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

- name: Install Mage
run: go install github.com/magefile/mage

- name: Update to latest spec
shell: bash
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go install github.com/swaggo/swag/cmd/[email protected]
mage spec
- name: Push generated spec file
uses: actions/checkout@v3
- run: |
git config --global user.name "${GITHUB_ACTOR}"
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
if (git diff --shortstat | grep '[0-9]'); then \
git add .; \
git commit -m "gen OpenAPI Spec by github-actions"; \
git push
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build:
runs-on: ubuntu-latest
steps:
Expand Down
42 changes: 42 additions & 0 deletions .github/workflows/swagger-doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: swagger-doc

on:
push:
branches:
- main

jobs:

generate-swagger:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

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

- name: Install Mage
run: go install github.com/magefile/mage

- name: Update spec and push generated spec file
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- run: |
export PATH=$PATH:$(go env GOPATH)/bin
mage spec
git config user.name github-actions
git config user.email [email protected]
if (git diff --shortstat | grep '[0-9]'); then \
git checkout -B main_swagger
git add .; \
git commit -m "gen OpenAPI Spec by github-actions"; \
git push
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 5 additions & 1 deletion magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,11 @@ func Integration() error {
// Spec generates an OpenAPI spec yaml based on code annotations.
func Spec() error {
swagCommand := "swag"
if err := installIfNotPresent(swagCommand, "github.com/swaggo/swag/cmd/swag@latest"); err != nil {
if err := installIfNotPresent(swagCommand, "github.com/swaggo/swag/cmd/[email protected]"); err != nil {
logrus.Fatal(err)
return err
}
if err := sh.Run(swagCommand, "fmt", "-d", "pkg/server/router"); err != nil {
logrus.Fatal(err)
return err
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/server/router/presentation.go
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ type ReviewSubmissionResponse struct {
}

// ReviewSubmission godoc
// @Summary Review a pending submissions
// @Summary Review a pending submission
// @Description Reviews a pending submission. After this method is called, the operation with `id==presentations/submissions/{submission_id}` will be updated with the result of this invocation.
// @Tags SubmissionAPI
// @Accept json
Expand Down

0 comments on commit 56ec92c

Please sign in to comment.