-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
11,225 additions
and
35,068 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,68 @@ | ||
name: Build/Test/Deploy | ||
on: | ||
push: | ||
branches-ignore: | ||
- gh-pages | ||
workflow_dispatch: | ||
pull_request: | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
build: | ||
name: Build and Deploy | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-node@v2-beta | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
node-version: '16' | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: '1' | ||
persist-credentials: false | ||
submodules: 'recursive' | ||
- name: Install | ||
run: npm install | ||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '22' | ||
cache: 'yarn' | ||
cache-dependency-path: ./yarn.lock | ||
- name: Install Dependencies | ||
run: yarn install --frozen-lockfile | ||
- name: Build | ||
run: npm run build | ||
- name: Deploy | ||
uses: JamesIves/[email protected] | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master'}} | ||
run: yarn run build | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | ||
BRANCH: gh-pages | ||
FOLDER: .vuepress/dist/ | ||
CLEAN: true | ||
lint: | ||
name: Lint | ||
path: .vuepress/dist/ | ||
deploy: | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- uses: actions/setup-node@v2-beta | ||
with: | ||
node-version: '16' | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: '1' | ||
submodules: 'recursive' | ||
- name: Install | ||
run: npm install | ||
- name: Lint | ||
run: npm run lint-ci | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 | ||
# lint: | ||
# name: Lint | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/setup-node@v2-beta | ||
# with: | ||
# node-version: '16' | ||
# - name: Checkout Repository | ||
# uses: actions/checkout@v2 | ||
# with: | ||
# fetch-depth: '1' | ||
# submodules: 'recursive' | ||
# - name: Install | ||
# run: npm install | ||
# - name: Lint | ||
# run: npm run lint-ci | ||
# spellcheck: | ||
# name: Spellcheck | ||
# runs-on: ubuntu-latest | ||
|
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
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
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
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
Oops, something went wrong.