Skip to content

Commit

Permalink
feat: adding same go.
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonTheDeveloper committed Mar 8, 2020
1 parent 0629921 commit d3df922
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/JasonTheDeveloper/Go-Semantic-Release-GitHub-Actions

go 1.13
13 changes: 13 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package main

import "fmt"

var (
version = "dev"
commit = "none"
date = "unknown"
)

func main() {
fmt.Printf("version %v, commit %v, built at %v", version, commit, date)
}

0 comments on commit d3df922

Please # to comment.