fix(action): remove outdated deploy workflow and rewrote yet renamed workflow filename

This commit is contained in:
andatoshiki 2023-03-02 00:07:11 +08:00
parent 7aa10e9f26
commit 9dc15618a8
2 changed files with 22 additions and 34 deletions

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

@ -0,0 +1,22 @@
name: ✅ Build and Deploy Vitepress Doc Pages to GitHub Pages
on:
push:
branches:
- master
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Perform check out
uses: actions/checkout@v3
- name: ⚒️ Install dependencies and build/compile the site # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
yarn install --frozen-lockfile
yarn lint
yarn docs:build
- name: 🪗 Deploy to GitHub pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist # The folder the action should deploy.

View File

@ -1,34 +0,0 @@
name: ✅ Build and Deploy Vitepress Doc Pages to GitHub Pages
on:
workflow_dispatch: {}
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- name: ⚒️ Install dependencies
run: yarn install --frozen-lockfile
- name: ☕ Build dtatic pages
run: yarn docs:build
- uses: actions/configure-pages@v2
- uses: actions/upload-pages-artifact@v1
with:
path: dist
- name: 🪗 Deploy to GitHub pages
id: deployment
uses: actions/deploy-pages@v1