Skip to content

Commit f11a9e3

Browse files
committed
chore: try to fix docs publish
1 parent 8740df6 commit f11a9e3

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
lines changed

.github/workflows/part-publish.yml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,19 @@ jobs:
4949
- name: Download all workflow run artifacts
5050
uses: actions/download-artifact@v5
5151

52-
# # @see https://github.com/crazy-max/ghaction-github-pages
53-
# - name: Deploy to GitHub Pages
54-
# uses: crazy-max/ghaction-github-pages@v4
55-
# if: ${{ inputs.prereleaseSlug == '' }}
56-
# with:
57-
# # deploy to gh-pages branch
58-
# target_branch: gh-pages
59-
# build_dir: docs
60-
# jekyll: false
61-
# env:
62-
# # @see https://docs.github.com/en/actions/reference/authentication-in-a-workflow#about-the-github_token-secret
63-
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52+
- name: Deploy to Azure Static Web App (Production)
53+
if: ${{ !inputs.prereleaseSlug }}
54+
uses: Azure/static-web-apps-deploy@v1
55+
with:
56+
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }}
57+
repo_token: ${{ secrets.GITHUB_TOKEN }}
58+
action: "upload"
59+
app_location: "docs"
60+
output_location: ""
61+
skip_app_build: true
6462

65-
- name: Deploy to Azure Static Web App
63+
- name: Deploy to Azure Static Web App (Preview)
64+
if: ${{ inputs.prereleaseSlug }}
6665
uses: Azure/static-web-apps-deploy@v1
6766
with:
6867
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }}
@@ -71,4 +70,4 @@ jobs:
7170
app_location: "docs"
7271
output_location: ""
7372
skip_app_build: true
74-
deployment_environment: ${{ inputs.prereleaseSlug || 'Production' }}
73+
deployment_environment: ${{ inputs.prereleaseSlug }}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# 6.0.1
2+
13
# 6.0.0
24

35
## Breaking Changes

docs/stacks/vue/coalesce-vue-vuetify/components/c-loader-status.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ The available flags are as follows, all of which default to `true` except for `s
186186

187187
``default`` - Accepts the content whose visibility is controlled by the state of the supplied [API Callers](/stacks/vue/layers/api-clients.md#api-callers). It will be shown or hidden according to the flags defined for each caller.
188188

189-
``prepend`` - Content to be placed in the [prepend slot](https://vuetifyjs.com/en/components/alerts/#slots) of the [v-alert](https://vuetifyjs.com/en/components/alerts/) used to display error and success messages.
189+
``prepend`` - Content to be placed in the `prepend` slot of the [v-alert](https://vuetifyjs.com/en/components/alerts/) used to display error and success messages.
190190

191-
``append`` - Content to be placed in the [append slot](https://vuetifyjs.com/en/components/alerts/#slots) of the [v-alert](https://vuetifyjs.com/en/components/alerts/) used to display error and success messages.
191+
``append`` - Content to be placed in the `append` slot of the [v-alert](https://vuetifyjs.com/en/components/alerts/) used to display error and success messages.
192192

0 commit comments

Comments
 (0)