update By Robot2024-08-16 15:03:11 #309
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: nacos.io deploy on github page | |
on: | |
push: | |
branches: | |
- develop-astro-nacos | |
jobs: | |
Build-Deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.x | |
- name: Build | |
run: | | |
npm install && DEPLOY_SITE=https://nacos-group.github.io npm run build | |
- name: Generate nojekyll | |
run: touch ./dist/.nojekyll | |
- name: Deploy | |
uses: peaceiris/[email protected] | |
env: | |
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
PUBLISH_BRANCH: gh-pages | |
PUBLISH_DIR: ./dist | |
with: | |
keepFiles: true |