-
Notifications
You must be signed in to change notification settings - Fork 6
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
1 parent
49ea2fb
commit 2994be7
Showing
2 changed files
with
37 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | ||
name: Deploy Github Actions | ||
on: | ||
push: | ||
branches: [main, feature-docs] | ||
|
||
jobs: | ||
Deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "20" | ||
cache: pnpm | ||
cache-dependency-path: docs/pnpm-lock.yaml | ||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
- name: Deploy | ||
run: | | ||
cd docs | ||
pnpm build | ||
cd src/.vuepress/dist | ||
# echo 'www.example.com' > CNAME | ||
git init | ||
git config user.email "[email protected]" | ||
git config user.name "spacemeowx2" | ||
git checkout -b dist | ||
git add -A | ||
git commit -m "deploy at `date`" | ||
git push -f https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} dist |
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