2024-11-16 12:11:00 +00:00
|
|
|
name: Build & Deploy
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-or-sth:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- run: echo "hi!"
|
|
|
|
- name: Get hugo
|
2024-11-16 12:19:27 +00:00
|
|
|
run: apt update && apt install hugo -y
|
|
|
|
- name: Clone repo
|
2024-11-16 12:31:34 +00:00
|
|
|
run: git clone --recurse-submodules https://git.emin.software/haxala1r/blog.git --depth=1 .
|
2024-11-16 12:19:27 +00:00
|
|
|
- run: pwd
|
|
|
|
- run: ls -la
|
2024-11-16 12:28:52 +00:00
|
|
|
- name: build
|
|
|
|
run: hugo
|