Skip to content

Commit 787ead6

Browse files
committed
CCM-11207: change deploy to use jekyll site
1 parent da31416 commit 787ead6

File tree

1 file changed

+3
-25
lines changed

1 file changed

+3
-25
lines changed

.github/workflows/cicd-3-deploy.yaml

Lines changed: 3 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -101,37 +101,15 @@ jobs:
101101
env:
102102
GH_TOKEN: ${{ github.token }}
103103
run: |
104-
gh release download ${{steps.get-asset-version.outputs.release_version}} -p sdk-swagger-docs-*.tar --output artifact.tar
104+
gh release download ${{steps.get-asset-version.outputs.release_version}} -p jekyll-docs-*.tar --output artifact.tar
105105
106106
- uses: actions/upload-artifact@v4
107107
with:
108-
name: sdk-swagger-docs-${{steps.get-asset-version.outputs.release_version}}
108+
name: jekyll-docs-${{steps.get-asset-version.outputs.release_version}}
109109
path: artifact.tar
110110

111111
- name: Deploy to GitHub Pages
112112
id: deployment
113113
uses: actions/deploy-pages@v4
114114
with:
115-
artifact_name: sdk-swagger-docs-${{steps.get-asset-version.outputs.release_version}}
116-
117-
118-
### BELOW WAS THE DEFAULT USING THE JEKYLL BUILD
119-
120-
# - name: "Get release version"
121-
# id: download-asset
122-
# shell: bash
123-
# env:
124-
# GH_TOKEN: ${{ github.token }}
125-
# run: |
126-
# gh release download ${{steps.get-asset-version.outputs.release_version}} -p jekyll-docs-*.tar --output artifact.tar
127-
128-
# - uses: actions/upload-artifact@v4
129-
# with:
130-
# name: jekyll-docs-${{steps.get-asset-version.outputs.release_version}}
131-
# path: artifact.tar
132-
133-
# - name: Deploy to GitHub Pages
134-
# id: deployment
135-
# uses: actions/deploy-pages@v4
136-
# with:
137-
# artifact_name: jekyll-docs-${{steps.get-asset-version.outputs.release_version}}
115+
artifact_name: jekyll-docs-${{steps.get-asset-version.outputs.release_version}}

0 commit comments

Comments
 (0)