This commit is contained in:
@@ -19,3 +19,9 @@ jobs:
|
|||||||
- name: Run script on current tree
|
- name: Run script on current tree
|
||||||
run: |
|
run: |
|
||||||
./scripts/test.sh
|
./scripts/test.sh
|
||||||
|
|
||||||
|
- uses: https://gitea.com/actions/gitea-upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: presentation
|
||||||
|
path: presentation/index.html
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
import "fmt"
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
fmt.Println("Some test yayyy")
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
marp: true
|
||||||
|
paginate: true
|
||||||
|
footer: 2026-XX-XX
|
||||||
|
header: Some presentation title
|
||||||
|
math: mathjax
|
||||||
|
---
|
||||||
|
|
||||||
|
# Presentation main screen
|
||||||
|
|
||||||
|
> Done at some point, very fast yaknow
|
||||||
|
|
||||||
|
---
|
||||||
|
# Contents
|
||||||
|
- First content
|
||||||
|
- Second content
|
||||||
|
- Third content
|
||||||
|
|
||||||
|
---
|
||||||
|
# A bit of code as well
|
||||||
|
```go
|
||||||
|
package main
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
fmt.Println("hello world!!!")
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
# Done!
|
||||||
|
- Thanks for your attention!
|
||||||
|
- Any questions?
|
||||||
+3
-3
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
apt update && apt install -y golang-go
|
apt update && apt install -y node
|
||||||
go run main.go
|
|
||||||
|
|
||||||
echo "Done running!"
|
cd presentation
|
||||||
|
npx @marp-team/marp-cli@latest presentation.md -o index.html
|
||||||
|
|||||||
Reference in New Issue
Block a user