Skip to content

移除gitee的github action #44

移除gitee的github action

移除gitee的github action #44

Workflow file for this run

name: 部署
on:
push:
branches:
- master
workflow_dispatch:
jobs:
buildAndUpdate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install
- run: npm run docs:build
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v2
with:
path: docs/.vitepress/dist
- name: 上传到 Github 的 gh-pages 分支
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: gh-pages
FOLDER: docs/.vitepress/dist
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Generate knownHost
# run: ssh-keyscan gitee.com > giteeKnownHosts
# - name: 上传到 Gitee 的 gh-pages 分支
# uses: s0/git-publish-subdir-action@develop
# env:
# REPO: [email protected]:musicfree/MusicFree.git
# BRANCH: gh-pages
# FOLDER: docs/.vitepress/dist
# SSH_PRIVATE_KEY: ${{ secrets.GITEE_DEPLOY_PRIVATE_KEY }}
# KNOWN_HOSTS_FILE: giteeKnownHosts
# - name: 创建 Gitee Page
# uses: yanglbme/gitee-pages-action@main
# with:
# gitee-username: maotoumao
# gitee-password: ${{ secrets.GITEE_PASSWORD }}
# gitee-repo: musicfree/MusicFree
# branch: gh-pages
deploy:
runs-on: ubuntu-latest
needs: buildAndUpdate
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v2