Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/120 update docs based on new devex features in zilla examples #121

4 changes: 2 additions & 2 deletions .github/workflows/build-deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Site versioned build & deploy

on:
push:
branches: [develop, feature/vuepress-rewrite]
branches: [develop]
workflow_dispatch:

permissions:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: pnpm

- name: build versions.json
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/gitflow-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ jobs:
echo "version=$(npm version --json=true | jq -r '."zilla-docs"')" >> $GITHUB_OUTPUT;
echo "tag=$tag" >> $GITHUB_OUTPUT;

- name: merge and tag ${{ steps.new-version.outputs.tag }} with HDBandit/gitflow-release-action
uses: vordimous/gitflow-release-action@main
- name: merge and tag ${{ steps.new-version.outputs.tag }}
uses: HDBandit/gitflow-release-action@v2.0.10
with:
command: start
tag: ${{ steps.new-version.outputs.tag }}
Expand Down Expand Up @@ -101,8 +101,8 @@ jobs:
git add .;
git commit -m "CI: update version to ${{ steps.new-version.outputs.version }}";

- name: merge and tag ${{ steps.new-version.outputs.tag }} with HDBandit/gitflow-release-action
uses: vordimous/gitflow-release-action@main
- name: merge and tag ${{ steps.new-version.outputs.tag }}
uses: HDBandit/gitflow-release-action@v2.0.10
with:
command: finish
tag: ${{ steps.new-version.outputs.tag }}
Expand Down
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@
"link-checker": "pnpm build && link-checker src/.vuepress/dist"
},
"devDependencies": {
"@vuepress/client": "2.0.0-beta.66",
"@vuepress/plugin-docsearch": "2.0.0-beta.66",
"@vuepress/plugin-google-analytics": "2.0.0-beta.66",
"@vuepress/client": "2.0.0-beta.67",
"@vuepress/plugin-docsearch": "2.0.0-beta.67",
"@vuepress/plugin-google-analytics": "2.0.0-beta.67",
"link-checker": "^1.4.2",
"markdownlint-cli2": "^0.8.1",
"vue": "^3.3.4",
"vuepress": "2.0.0-beta.66",
"vuepress-theme-hope": "2.0.0-beta.235"
"mathjax-full": "^3.2.2",
"vue": "^3.3.7",
"vuepress": "2.0.0-beta.67",
"vuepress-theme-hope": "2.0.0-beta.243"
}
}
Loading