Update action
This commit is contained in:
13
main.go
13
main.go
@@ -2,6 +2,7 @@ package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"log"
|
||||
"os"
|
||||
)
|
||||
|
||||
@@ -9,4 +10,16 @@ func main() {
|
||||
for _, v := range os.Environ() {
|
||||
fmt.Println(v)
|
||||
}
|
||||
|
||||
giteaEnvFile, ok := os.LookupEnv("GITEA_ENV")
|
||||
if !ok {
|
||||
log.Fatalln("Gitea env file not found")
|
||||
}
|
||||
|
||||
raw, err := os.ReadFile(giteaEnvFile)
|
||||
if err != nil {
|
||||
log.Fatalln("Gitea env file read error:", err)
|
||||
}
|
||||
|
||||
fmt.Println(string(raw))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user