Merge pull request #1 from meatballhat/vuefun-stuff

Try an action with vuefun
cat-town
Dan Buch 6 years ago committed by GitHub
commit 16760d88e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,9 @@
workflow "Main" {
on = "push"
resolves = ["vuefun Build"]
}
action "vuefun Build" {
uses = "./vuefun/.actions/build"
args = "wat"
}

@ -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"]

@ -0,0 +1,4 @@
#!/usr/bin/env sh
set -e
echo "Well Hello There"
echo "You said: ${*}"

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

@ -0,0 +1 @@
module .

@ -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=

@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script src="https://unpkg.com/vue/"></script>
</body>
</html>
Loading…
Cancel
Save