Skip to content
This repository has been archived by the owner on Jan 5, 2025. It is now read-only.

Update Swagger Docs generation script to create directory #2

Merged
merged 1 commit into from
Apr 11, 2024
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:
uses: actions/checkout@v4

- name: Build and Publish Swagger Docs
run: bash ${{ github.workspace }}/.pipelines/scripts/generate-swagger.sh ${{ github.workspace }}/artifacts
run: mkdir -p ${{ github.workspace }}/swagger-artifacts && bash ${{ github.workspace }}/.pipelines/scripts/generate-swagger.sh ${{ github.workspace }}/swagger-artifacts
env:
ASPNETCORE_ENVIRONMENT: 'Local'

- name: Publish Swagger Doc as Pipeline Artifact
uses: actions/upload-artifact@v2
with:
name: SwaggerDoc
path: ${{ github.workspace }}/artifacts/dex-swagger.json
path: ${{ github.workspace }}/swagger-artifacts/dex-swagger.json

static_code_analysis:
name: Static Code Analysis
Expand Down
Loading