File tree Expand file tree Collapse file tree 4 files changed +17
-0
lines changed
Expand file tree Collapse file tree 4 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 7272 asset_name : jekyll-docs-${{ inputs.version }}.tar
7373 asset_content_type : " application/gzip"
7474
75+ - name : " Upload sdk html docs release asset"
76+ uses : actions/upload-release-asset@v1
77+ env :
78+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
79+ with :
80+ upload_url : " ${{ steps.create_release.outputs.upload_url }}"
81+ asset_path : ./artifacts/sdk-html-docs-${{ inputs.version }}/artifact.tar
82+ asset_name : sdk-html-docs-${{ inputs.version }}.tar
83+ asset_content_type : " application/gzip"
84+
7585 # - name: "tar gz jekyll docs release asset"
7686 # # Git hub pages needs a single tar called artifact inside the zip.
7787 # working-directory: ./artifacts/jekyll-docs-${{ inputs.version }}
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ clean:: # Clean-up project resources (main) @Operations
2727serve :
2828 npm run serve
2929
30+
3031config :: _install-dependencies version # Configure development environment (main) @Configuration
3132 npm install
3233 (cd docs && make install && cd ..)
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ build: version # Build the project artefact @Pipeline
88clean : # Clean-up project resources (main) @Operations
99 rm -rf * /
1010
11+ swagger :
12+ ./swagger.sh
13+
1114version :
1215 touch _config.version.yml
1316 if [[ $( VERSION) == " " ]]; then \
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ docker run -p 80:8080 -e SWAGGER_JSON=/swagger/swagger.json -v ../specification/api/notify-supplier.yml:/swagger/swagger.json docker.swagger.io/swaggerapi/swagger-ui
You can’t perform that action at this time.
0 commit comments