From a3b47ba0574826ee26678d94d90189fb66fd988a Mon Sep 17 00:00:00 2001 From: Alexey Palazhchenko Date: Fri, 22 Mar 2024 04:56:24 +0400 Subject: [PATCH] Use official badges (#57) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 930dc01..ec3cfe8 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # GitHub Actions SDK (Go) -[![GoDoc](https://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](https://pkg.go.dev/github.com/sethvargo/go-githubactions) -[![GitHub Actions](https://img.shields.io/github/actions/workflow/status/sethvargo/go-githubactions/unit.yml?branch=main&style=flat-square)](https://github.com/sethvargo/go-githubactions/actions?query=workflow%3ATest) +[![Go Reference](https://pkg.go.dev/badge/github.com/sethvargo/go-githubactions.svg)](https://pkg.go.dev/github.com/sethvargo/go-githubactions) +[![unit](https://github.com/sethvargo/go-githubactions/actions/workflows/unit.yml/badge.svg)](https://github.com/sethvargo/go-githubactions/actions/workflows/unit.yml) This library provides an SDK for authoring [GitHub Actions][gh-actions] in Go. It has no external dependencies and provides a Go-like interface for interacting with GitHub Actions' build system. @@ -70,7 +70,7 @@ By default, GitHub Actions expects actions to be written in Node.js. For other l # your-repo/Dockerfile FROM golang:1.18 WORKDIR /src -COPY . . +COPY . . RUN go build -o /bin/app . ENTRYPOINT ["/bin/app"] ```