Compare commits

..

10 Commits

Author SHA1 Message Date
Evrard Van Espen
7473910598 Update CI
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 38s
2025-11-19 17:43:36 +00:00
Evrard Van Espen
26a727fdc0 Update CI 2025-11-19 17:33:03 +00:00
Evrard Van Espen
d2a2034318 Update CI 2025-11-19 17:31:04 +00:00
Evrard Van Espen
628474510a Update CI 2025-11-19 17:30:38 +00:00
Evrard Van Espen
451ccaa5cf Update CI 2025-11-19 17:06:53 +00:00
Evrard Van Espen
37d3f74cbd Update CI 2025-11-19 17:02:35 +00:00
Evrard Van Espen
ecd9198953 Update CI 2025-11-18 10:40:33 +00:00
Evrard Van Espen
e00b158d97 Add ci 2025-11-18 09:40:51 +00:00
Evrard Van Espen
e04f8d6d1f Update todo list 2025-11-18 09:40:27 +00:00
Evrard Van Espen
604468a2ff Add better logging for style processing 2025-11-18 09:40:19 +00:00
3 changed files with 22 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: arch-test
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!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."

View File

@@ -54,7 +54,7 @@ This is a personal blog built with Go, using the go-org library to parse Org-mod
- [ ] footer - [ ] footer
- [ ] resume page - [ ] resume page
- [ ] contact page - [ ] contact page
- [ ] responsive - [X] responsive
- [ ] RSS - [ ] RSS
- [ ] favicon - [ ] favicon
- [ ] search - [ ] search

View File

@@ -48,13 +48,13 @@ func compileSCSS() (string, error) {
transpiler, err := godartsass.Start(godartsass.Options{}) transpiler, err := godartsass.Start(godartsass.Options{})
if err != nil { if err != nil {
log.Fatal(err) log.Fatal("cannot start transpiler: ", err)
} }
css, err := transpiler.Execute(args) css, err := transpiler.Execute(args)
if err != nil { if err != nil {
log.Fatal(err) log.Fatal("cannot compile SCSS: ", err)
} }
log.Println("CSS compiled") log.Println("CSS compiled")