12 lines
332 B
YAML
12 lines
332 B
YAML
|
name: Gitea Actions Demo
|
||
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
Explore-Gitea-Actions:
|
||
|
runs-on: self-hosted
|
||
|
steps:
|
||
|
- run: cd /root/yhehe && git pull origin main
|
||
|
- run: cd /root/yhehe && hexo cl
|
||
|
- run: cd /root/yhehe && hexo g
|
||
|
- run: cd /root/yhehe && hexo d
|