Skip to content

Commit

Permalink
Fix CI, upgrade dependencies and add lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Jun 13, 2024
1 parent cc7dd76 commit cd06e8e
Show file tree
Hide file tree
Showing 4 changed files with 32,535 additions and 6 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
env:
NODE_OPTIONS: "--openssl-legacy-provider" # https://github.com/vuejs/vue-cli/issues/6770
with:
node-version: '16' # https://github.com/vuejs/vue-cli/issues/6770
- uses: actions/checkout@v3
node-version: '22.x'
- uses: actions/checkout@v4
with:
submodules: true
- run: npm install
Expand All @@ -21,7 +23,7 @@ jobs:
- run: cp -ap redirects/. .vuepress/dist
- run: cp -ap .vuepress/dist/assets/documentation/. .vuepress/dist/documentation
- run: rm -r .vuepress/dist/assets/documentation
- uses: peaceiris/actions-gh-pages@v3
- uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .vuepress/dist
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/node_modules/
/.vuepress/dist
/.vuepress/public/assets/documentation/*/processes.json
/package-lock.json
/psc.md
2 changes: 1 addition & 1 deletion .vuepress/enhanceApp.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
opconst config = require('./config.js');
const config = require('./config.js');

const defaultVersion = config.themeConfig.versions[config.themeConfig.defaultVersion];

Expand Down
Loading

0 comments on commit cd06e8e

Please sign in to comment.