replace vuepress deploy action

This commit is contained in:
mahula 2023-11-29 11:27:29 +01:00
parent 5007cad8c8
commit 6b09b500f2

22
.github/workflows/vuepress-deploy.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: vuepress-gh-pages-deploy
uses: crazy-max/ghaction-github-pages@master
with:
target_branch: gh-pages
build_dir: docs/.vuepress/dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}