mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 06:25:55 +00:00
fix(action): remove outdated deploy workflow and rewrote yet renamed workflow filename
This commit is contained in:
parent
7aa10e9f26
commit
9dc15618a8
22
.github/workflows/deploy.yml
vendored
Normal file
22
.github/workflows/deploy.yml
vendored
Normal 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.
|
||||
34
.github/workflows/publish.yml
vendored
34
.github/workflows/publish.yml
vendored
@ -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
|
||||
Loading…
Reference in New Issue
Block a user