Skip to content

Commit

Permalink
Merge branch 'main' into monetization
Browse files Browse the repository at this point in the history
  • Loading branch information
gked authored Oct 21, 2024
2 parents d9a836b + 3f10372 commit 8ca2c7f
Show file tree
Hide file tree
Showing 9 changed files with 59 additions and 28 deletions.
42 changes: 36 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,46 @@ jobs:
run: npm run build

- name: Save Artifact Build
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: build
path: build/
retention-days: 1

- name: Save Artifact Assets
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: assets
path: assets/
retention-days: 1

build_vue:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Build
run: |
cd ./vuepress-starter/
npm i
npm run docs:build
- name: Save Artifact Build
uses: actions/upload-artifact@v3
with:
name: dist
path: ./vuepress-starter/docs/.vuepress/dist/
retention-days: 1

deploy_win:
runs-on: docs-en-deploy
needs: build
steps:
- name: Download artifacts
uses: actions/download-artifact@v2

uses: actions/download-artifact@v3
- name: Copy artifacts
run: |
cp -Recurse -Force ./build/site/* c:/inetpub/wwwroot/docs/en/
Expand All @@ -51,9 +71,19 @@ jobs:
needs: build
steps:
- name: Download artifacts
uses: actions/download-artifact@v2

uses: actions/download-artifact@v3
- name: Copy artifacts
run: |
cp -r ./build/site/* /data/docs/en/
cp -r ./assets/* /data/docs/
deploy_docs_pocketnet_app:
runs-on: docs.bastyon.com
needs: build_vue
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
- name: Copy artifacts
run: |
rm -rf /data/documentation/*
cp -r ./dist/* /data/documentation/
1 change: 1 addition & 0 deletions vuepress-starter/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/dist
20 changes: 10 additions & 10 deletions vuepress-starter/docs/.vuepress/.temp/internal/clientConfigs.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import * as clientConfig0 from '/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/plugin-active-header-links/lib/client/config.js'
import * as clientConfig1 from '/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/plugin-back-to-top/lib/client/config.js'
import * as clientConfig2 from '/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/plugin-copy-code/lib/client/config.js'
import * as clientConfig3 from '/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/plugin-markdown-hint/lib/client/config.js'
import * as clientConfig4 from '/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/plugin-medium-zoom/lib/client/config.js'
import * as clientConfig5 from '/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/plugin-nprogress/lib/client/config.js'
import * as clientConfig6 from '/home/user/projects/bastyon/documentation/vuepress-starter/docs/.vuepress/.temp/prismjs/config.js'
import * as clientConfig7 from '/home/user/projects/bastyon/documentation/vuepress-starter/docs/.vuepress/.temp/markdown-tab/config.js'
import * as clientConfig8 from '/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/plugin-theme-data/lib/client/config.js'
import * as clientConfig9 from '/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/theme-default/lib/client/config.js'
import * as clientConfig0 from '/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/plugin-active-header-links/lib/client/config.js'
import * as clientConfig1 from '/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/plugin-back-to-top/lib/client/config.js'
import * as clientConfig2 from '/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/plugin-copy-code/lib/client/config.js'
import * as clientConfig3 from '/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/plugin-markdown-hint/lib/client/config.js'
import * as clientConfig4 from '/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/plugin-medium-zoom/lib/client/config.js'
import * as clientConfig5 from '/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/plugin-nprogress/lib/client/config.js'
import * as clientConfig6 from '/data/work/bastyon/apps/documentation/vuepress-starter/docs/.vuepress/.temp/prismjs/config.js'
import * as clientConfig7 from '/data/work/bastyon/apps/documentation/vuepress-starter/docs/.vuepress/.temp/markdown-tab/config.js'
import * as clientConfig8 from '/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/plugin-theme-data/lib/client/config.js'
import * as clientConfig9 from '/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/theme-default/lib/client/config.js'

export const clientConfigs = [
clientConfig0,
Expand Down
6 changes: 3 additions & 3 deletions vuepress-starter/docs/.vuepress/.temp/markdown-tab/config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import CodeTabs from "/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/plugin-markdown-tab/lib/client/components/CodeTabs.js";
import Tabs from "/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/plugin-markdown-tab/lib/client/components/Tabs.js";
import "/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/plugin-markdown-tab/lib/client/styles/vars.css";
import { CodeTabs } from "/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/plugin-markdown-tab/lib/client/components/CodeTabs.js";
import { Tabs } from "/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/plugin-markdown-tab/lib/client/components/Tabs.js";
import "/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/plugin-markdown-tab/lib/client/styles/vars.css";

export default {
enhance: ({ app }) => {
Expand Down
2 changes: 1 addition & 1 deletion vuepress-starter/docs/.vuepress/.temp/pages/404.html.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import comp from "/home/user/projects/bastyon/documentation/vuepress-starter/docs/.vuepress/.temp/pages/404.html.vue"
import comp from "/data/work/bastyon/apps/documentation/vuepress-starter/docs/.vuepress/.temp/pages/404.html.vue"
const data = JSON.parse("{\"path\":\"/404.html\",\"title\":\"\",\"lang\":\"en-US\",\"frontmatter\":{\"layout\":\"NotFound\"},\"headers\":[],\"git\":{},\"filePathRelative\":null}")
export { comp, data }

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import comp from "/home/user/projects/bastyon/documentation/vuepress-starter/docs/.vuepress/.temp/pages/get-started.html.vue"
const data = JSON.parse("{\"path\":\"/get-started.html\",\"title\":\"Get Started\",\"lang\":\"en-US\",\"frontmatter\":{},\"headers\":[{\"level\":2,\"title\":\"Overview\",\"slug\":\"overview\",\"link\":\"#overview\",\"children\":[]},{\"level\":2,\"title\":\"Quick Start Guide\",\"slug\":\"quick-start-guide\",\"link\":\"#quick-start-guide\",\"children\":[{\"level\":3,\"title\":\"Installation\",\"slug\":\"installation\",\"link\":\"#installation\",\"children\":[]},{\"level\":3,\"title\":\"Contribution\",\"slug\":\"contribution\",\"link\":\"#contribution\",\"children\":[]},{\"level\":3,\"title\":\"Documentation\",\"slug\":\"documentation\",\"link\":\"#documentation\",\"children\":[]}]},{\"level\":2,\"title\":\"How to Leave Feedback on Bastyon\",\"slug\":\"how-to-leave-feedback-on-bastyon\",\"link\":\"#how-to-leave-feedback-on-bastyon\",\"children\":[]},{\"level\":2,\"title\":\"FAQs\",\"slug\":\"faqs\",\"link\":\"#faqs\",\"children\":[]}],\"git\":{\"updatedTime\":1729046922000,\"contributors\":[{\"name\":\"gked\",\"email\":\"[email protected]\",\"commits\":4}]},\"filePathRelative\":\"get-started.md\"}")

export { comp, data }

if (import.meta.webpackHot) {
Expand Down
2 changes: 1 addition & 1 deletion vuepress-starter/docs/.vuepress/.temp/pages/index.html.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions vuepress-starter/docs/.vuepress/.temp/prismjs/config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import "/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/highlighter-helper/lib/client/styles/base.css"
import "/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/plugin-prismjs/lib/client/styles/nord.css"
import "/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/highlighter-helper/lib/client/styles/line-numbers.css"
import "/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/highlighter-helper/lib/client/styles/notation-highlight.css"
import "/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/highlighter-helper/lib/client/styles/collapsed-lines.css"
import { setupCollapsedLines } from "/home/user/projects/bastyon/documentation/vuepress-starter/node_modules/@vuepress/highlighter-helper/lib/client/composables/collapsedLines.js"
import "/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/highlighter-helper/lib/client/styles/base.css"
import "/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/plugin-prismjs/lib/client/styles/nord.css"
import "/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/highlighter-helper/lib/client/styles/line-numbers.css"
import "/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/highlighter-helper/lib/client/styles/notation-highlight.css"
import "/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/highlighter-helper/lib/client/styles/collapsed-lines.css"
import { setupCollapsedLines } from "/data/work/bastyon/apps/documentation/vuepress-starter/node_modules/@vuepress/highlighter-helper/lib/client/composables/collapsedLines.js"

export default {
setup() {
Expand Down

This file was deleted.

0 comments on commit 8ca2c7f

Please sign in to comment.