blog/.gitea/workflows/main-build.yaml
Emin Arslan ec5fd207e7
All checks were successful
Build & Deploy / build-or-sth (push) Successful in 47s
Make the clone recurse submodules so that we can use the Qubt theme
2024-11-16 15:31:34 +03:00

21 lines
492 B
YAML

name: Build & Deploy
on:
push:
branches:
- main
jobs:
build-or-sth:
runs-on: ubuntu-latest
steps:
- run: echo "hi!"
- name: Get hugo
run: apt update && apt install hugo -y
- name: Clone repo
run: git clone --recurse-submodules https://git.emin.software/haxala1r/blog.git --depth=1 .
- run: pwd
- run: ls -la
- name: build
run: hugo