Skip to content

Commit

Permalink
ci: surge
Browse files Browse the repository at this point in the history
  • Loading branch information
D-Sketon committed Aug 23, 2024
1 parent 1ee3537 commit d9e1e86
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/surge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,31 +14,29 @@ jobs:
runs-on: ubuntu-latest

steps:
# Step 1: Checkout the current repository
- name: Checkout repository
uses: actions/checkout@v2

# Step 2: Checkout the external repository
- name: Checkout external repository
uses: actions/checkout@v2
with:
repository: D-Sketon/reimu-playground
path: reimu-playground

# Step 3: Copy this repository to the external repository's directory
- name: Install Node
uses: actions/setup-node@v2
with:
working-directory: reimu-playground
node-version: '18'

- name: Copy this repository to the external repository's directory
run: cp -r ./* reimu-playground/themes/reimu

# Step 4: Change directory to the external repo's root directory
- name: Change directory to the external repo's root directory
uses: actions/setup-node@v3
with:
node-version: 18
working-directory: reimu-playground
run: |
npm install
hexo generate
# Step 5: Deploy to Surge
- name: Deploy to Surge
run: npx surge --project ./public --domain ${{ secrets.SURGE_DOMAIN }} --token ${{ secrets.SURGE_TOKEN }}

0 comments on commit d9e1e86

Please sign in to comment.