Merge pull request #1 from meatballhat/vuefun-stuff
Try an action with vuefun
This commit is contained in:
commit
16760d88e1
9
.github/main.workflow
vendored
Normal file
9
.github/main.workflow
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
workflow "Main" {
|
||||
on = "push"
|
||||
resolves = ["vuefun Build"]
|
||||
}
|
||||
|
||||
action "vuefun Build" {
|
||||
uses = "./vuefun/.actions/build"
|
||||
args = "wat"
|
||||
}
|
12
vuefun/.actions/build/Dockerfile
Normal file
12
vuefun/.actions/build/Dockerfile
Normal file
@ -0,0 +1,12 @@
|
||||
FROM golang:1.11-slim
|
||||
|
||||
LABEL "com.github.actions.name"="vuefun Build"
|
||||
LABEL "com.github.actions.description"="Build the vuefun thing"
|
||||
LABEL "com.github.actions.color"="gray"
|
||||
|
||||
LABEL "repository"="https://github.com/meatballhat/box-o-sand"
|
||||
LABEL "homepage"="https://github.com/meatballhat/box-o-sand"
|
||||
LABEL "maintainer"="Dan Buch <dan+github-box-o-sand@meatballhat.com>"
|
||||
|
||||
ADD entrypoint.sh /entrypoint.sh
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
4
vuefun/.actions/build/entrypoint.sh
Normal file
4
vuefun/.actions/build/entrypoint.sh
Normal file
@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env sh
|
||||
set -e
|
||||
echo "Well Hello There"
|
||||
echo "You said: ${*}"
|
7
vuefun/app.go
Normal file
7
vuefun/app.go
Normal file
@ -0,0 +1,7 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("vim-go")
|
||||
}
|
1
vuefun/go.mod
Normal file
1
vuefun/go.mod
Normal file
@ -0,0 +1 @@
|
||||
module .
|
6
vuefun/go.sum
Normal file
6
vuefun/go.sum
Normal file
@ -0,0 +1,6 @@
|
||||
github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=
|
||||
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
|
||||
github.com/robfig/soy v0.0.0-20190301161207-6b9d0368d426 h1:JjleeXzkHpcebPftrdF+xkSCglWHAeA8BGMyTBzs0F0=
|
||||
github.com/robfig/soy v0.0.0-20190301161207-6b9d0368d426/go.mod h1:dtQf30vFRESmRbfRJTwRYCwJiH1iWFrjYE+RRNy+Hzo=
|
||||
golang.org/x/sys v0.0.0-20190309122539-980fc434d28e h1:eFmUCjqCNXZTydmJBXWeJOHCWGd2My0J+jleBc2ntI0=
|
||||
golang.org/x/sys v0.0.0-20190309122539-980fc434d28e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
8
vuefun/views/index.html.soy
Normal file
8
vuefun/views/index.html.soy
Normal file
@ -0,0 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<script src="https://unpkg.com/vue/"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user