mirror of https://github.com/artf/grapesjs.git
nocodeframeworkdrag-and-dropsite-buildersite-generatortemplate-builderui-builderweb-builderweb-builder-frameworkwebsite-builderno-codepage-builder
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.6 KiB
53 lines
1.6 KiB
name: Publish GrapesJS Docs
|
|
|
|
on:
|
|
push:
|
|
branches: [dev]
|
|
paths:
|
|
- 'docs/**'
|
|
|
|
jobs:
|
|
publish-docs:
|
|
runs-on: ubuntu-latest
|
|
if: "startsWith(github.event.head_commit.message, 'Release GrapesJS docs:')"
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/setup-project
|
|
- name: Setup Git
|
|
run: |
|
|
git config --global user.name 'GrapesJSBot'
|
|
git config --global user.email 'services@grapesjs.com'
|
|
- name: Build and Deploy Docs
|
|
env:
|
|
GRAPESJS_BOT_TOKEN: ${{ secrets.GRAPESJS_BOT_TOKEN }}
|
|
working-directory: ./docs
|
|
run: |
|
|
# abort on errors
|
|
set -e
|
|
# navigate into the build output directory
|
|
cd .vuepress/dist
|
|
|
|
# Need to deploy all the documentation inside docs folder
|
|
mkdir docs-new
|
|
|
|
# move all the files from the current directory in docs
|
|
mv `ls -1 ./ | grep -v docs-new` ./docs-new
|
|
|
|
# fetch the current site, remove the old docs dir and make current the new one
|
|
git clone -b main https://github.com/GrapesJS/website.git tmp
|
|
mv tmp/[^.]* . # Move all non-hidden files
|
|
mv tmp/.[^.]* . 2>/dev/null || true # Move hidden files, ignore errors if none exist
|
|
rm -rf tmp
|
|
rm -fR public/docs
|
|
mv ./docs-new ./public/docs
|
|
|
|
# stage all and commit
|
|
git add -A
|
|
git commit -m 'deploy docs'
|
|
|
|
# Push using PAT
|
|
git push https://$GRAPESJS_BOT_TOKEN@github.com/GrapesJS/website.git main
|
|
|
|
cd -
|
|
|