Update .gitea/workflows/build.yaml
This commit is contained in:
parent
f447fcf75b
commit
3ff0ff7626
|
@ -1,12 +1,15 @@
|
||||||
name: Homepage
|
name: Homepage
|
||||||
on: [push]
|
on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
publish:
|
build:
|
||||||
container: klakegg/hugo:ext
|
container: klakegg/hugo:ext
|
||||||
steps:
|
steps:
|
||||||
- name: Check out source
|
- name: Check out source
|
||||||
run: git clone $GITHUB_SERVER_URL/$GITHUB_REPOSITORY .
|
run: git clone $GITHUB_SERVER_URL/$GITHUB_REPOSITORY .
|
||||||
- name: Build
|
- name: Build
|
||||||
run: hugo build
|
run: hugo build
|
||||||
|
publish:
|
||||||
|
container: rsync/rsync
|
||||||
|
- run: find
|
||||||
- name: Publish
|
- name: Publish
|
||||||
run: rsync --delete -vax ./public/ neale@melville.woozle.org:/srv/www/woozle.org/
|
run: rsync --delete -vax ./public/ neale@melville.woozle.org:/srv/www/woozle.org/
|
||||||
|
|
Loading…
Reference in New Issue