v9
This commit is contained in:
@ -3,7 +3,7 @@ run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-deploy:
|
build-and-deploy-to-local-server:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
HUGO_VERSION: '0.147.5'
|
HUGO_VERSION: '0.147.5'
|
||||||
@ -22,9 +22,18 @@ jobs:
|
|||||||
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||||
- name: Build with Hugo
|
- name: Build with Hugo
|
||||||
run: hugo
|
run: hugo
|
||||||
- name: Deploy
|
- name: Local Deploy
|
||||||
run: |
|
run: |
|
||||||
rm -rf /workspace/html/blog
|
rm -rf /workspace/html/blog
|
||||||
mkdir -p /workspace/html/blog
|
mkdir -p /workspace/html/blog
|
||||||
cp -r public/* /workspace/html/blog/
|
cp -r public/* /workspace/html/blog/
|
||||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||||
|
|
||||||
|
deploy-to-remote-server:
|
||||||
|
needs: build-and-deploy-to-local-server
|
||||||
|
runs-on: mac
|
||||||
|
steps:
|
||||||
|
- name: Deploy to remote server
|
||||||
|
run: |
|
||||||
|
ssh root@1970666.xyz "rm -rf /root/docker/docker-nginx/html/blog"
|
||||||
|
scp -r /Users/konjacpotato/Workspace/docker/docker-nginx/html/blog root@1970666.xyz:/root/docker/docker-nginx/html/
|
||||||
Reference in New Issue
Block a user