add workflow
Some checks failed
Gitea Actions Demo / build-and-deploy (push) Failing after 2m35s

This commit is contained in:
2025-05-27 19:27:59 +08:00
parent f22949f4e0
commit 4ca219f428
2 changed files with 29 additions and 3 deletions

View File

@ -0,0 +1,29 @@
name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
env:
HUGO_VERSION: '0.147.5'
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
run: |
echo "git clone ${{ gitea.server_url }}/${{ gitea.repository }} ."
git clone ${{ gitea.server_url }}/${{ gitea.repository }} .
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- name: Build with Hugo
run: hugo
- name: Deploy
run: |
rm -rf /workspace/html/blog
cp -r public/* /workspace/html/blog/
- run: echo "🍏 This job's status is ${{ job.status }}."

3
.gitmodules vendored
View File

@ -1,3 +0,0 @@
[submodule "themes/PaperMod"]
path = themes/PaperMod
url = https://github.com/adityatelange/hugo-PaperMod.git