Files
blog/.gitea/workflows/build.yml
changsongd 0ab14e98ea
All checks were successful
Gitea Actions Demo / build-and-deploy (push) Successful in 2m45s
make blog dir exist
2025-05-27 19:53:02 +08:00

30 lines
1.3 KiB
YAML

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-arm64.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
mkdir -p /workspace/html/blog
cp -r public/* /workspace/html/blog/
- run: echo "🍏 This job's status is ${{ job.status }}."