mirror of
https://github.com/rottenwheel/hugo-rottenwheel.git
synced 2025-01-17 15:46:29 -07:00
Compare commits
6 Commits
8a5eaa1cc5
...
c87755b659
Author | SHA1 | Date | |
---|---|---|---|
|
c87755b659 | ||
|
04a8772f9b | ||
|
16ec65755a | ||
|
49062cfa32 | ||
|
e2705c1e45 | ||
|
f543926a0a |
30
.github/workflows/deploy.yml
vendored
30
.github/workflows/deploy.yml
vendored
@ -1,4 +1,4 @@
|
||||
name: Build and Deploy Hugo Site
|
||||
name: Deploy latest site
|
||||
|
||||
on:
|
||||
push:
|
||||
@ -6,24 +6,20 @@ on:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Setup Hugo
|
||||
uses: peaceiris/actions-hugo@v3
|
||||
with:
|
||||
hugo-version: 'latest'
|
||||
- name: Setup SSH
|
||||
run: |
|
||||
mkdir -p ~/.ssh
|
||||
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id
|
||||
chmod 600 ~/.ssh/id
|
||||
echo "${{ secrets.SERVER_FINGERPRINT }}" >> ~/.ssh/known_hosts
|
||||
|
||||
- name: Build
|
||||
run: hugo --minify
|
||||
|
||||
- name: Deploy to GitHub Pages
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./public
|
||||
publish_branch: pages
|
||||
- name: Run rotten-build command
|
||||
run: |
|
||||
ssh -i ~/.ssh/id -o StrictHostKeyChecking=yes ${{ secrets.SSH_USERNAME }}@${{ secrets.SERVER_ADDRESS }} "sudo rotten-build"
|
||||
|
@ -55,8 +55,6 @@ The generated site will be in the `public/` directory.
|
||||
date: 2024-07-15
|
||||
---
|
||||
|
||||
# My New Post
|
||||
|
||||
This is the content of my new post.
|
||||
```
|
||||
|
||||
|
@ -3,6 +3,4 @@ title: "testing"
|
||||
date: 2024-10-05
|
||||
---
|
||||
|
||||
# testing
|
||||
|
||||
Check, check... *1... 2... 3...* Over.
|
||||
|
Loading…
Reference in New Issue
Block a user