This commit is contained in:
Kekskurse 2023-08-02 23:43:05 +02:00
commit 071bfa0f28
Signed by: kekskurse
GPG Key ID: 728ACCB59341E7E4
4 changed files with 14 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.idea

5
action.yml Normal file
View File

@ -0,0 +1,5 @@
name: 'Simple Go Action'
description: 'A simple Gitea action written in go'
runs:
using: 'go'
main: 'main.go'

1
go.mod Normal file
View File

@ -0,0 +1 @@
module action-webpage

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello world")
}