Skip to content
This repository has been archived by the owner on Nov 2, 2021. It is now read-only.

Commit

Permalink
Make entrypoint.sh executable (#24)
Browse files Browse the repository at this point in the history
* Make entrypoint.sh executable

* Bump version
  • Loading branch information
cedrickring authored Oct 7, 2019
1 parent d485f3a commit c0f74f4
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.13

LABEL name="Golang Action"
LABEL maintainer="Cedric Kring"
LABEL version="1.4.0"
LABEL version="1.4.1"
LABEL repository="https://github.com/cedrickring/golang-action"

LABEL com.github.actions.name="Golang Action"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@master

- name: run
uses: cedrickring/[email protected].0
uses: cedrickring/[email protected].1
```
Expand All @@ -27,7 +27,7 @@ To run a custom command, just use:
```yaml
steps:
- name: Run custom command
uses: cedrickring/[email protected].0
uses: cedrickring/[email protected].1
with:
args: make my-target
```
Expand All @@ -39,7 +39,7 @@ source Go project:
```yaml
steps:
- name: Run with custom import path
uses: cedrickring/[email protected].0
uses: cedrickring/[email protected].1
env:
IMPORT: "root/repo"
```
Expand All @@ -49,7 +49,7 @@ To use Go Modules add `GO111MODULE=on` to the step:
```yaml
steps:
- name: Go Modules
uses: cedrickring/[email protected].0
uses: cedrickring/[email protected].1
env:
GO111MODULE: "on"
```
Expand All @@ -59,7 +59,7 @@ If your go project is not located at the root of the repo you can also specify e
```yaml
steps:
- name: Custom project path
uses: cedrickring/[email protected].0
uses: cedrickring/[email protected].1
env:
PROJECT_PATH: "./path/in/my/project"
```
Expand All @@ -68,5 +68,5 @@ To use a specific golang version (1.10, 1.11, 1.12, 1.13), defaults to the lates
```yaml
steps:
- name: Use Go 1.11
uses: cedrickring/golang-action/[email protected].0
uses: cedrickring/golang-action/[email protected].1
```
2 changes: 1 addition & 1 deletion go1.10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.10

LABEL name="Golang Action"
LABEL maintainer="Cedric Kring"
LABEL version="1.4.0"
LABEL version="1.4.1"
LABEL repository="https://github.com/cedrickring/golang-action"

LABEL com.github.actions.name="Golang Action"
Expand Down
2 changes: 1 addition & 1 deletion go1.11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.11

LABEL name="Golang Action"
LABEL maintainer="Cedric Kring"
LABEL version="1.4.0"
LABEL version="1.4.1"
LABEL repository="https://github.com/cedrickring/golang-action"

LABEL com.github.actions.name="Golang Action"
Expand Down
2 changes: 1 addition & 1 deletion go1.12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.12

LABEL name="Golang Action"
LABEL maintainer="Cedric Kring"
LABEL version="1.4.0"
LABEL version="1.4.1"
LABEL repository="https://github.com/cedrickring/golang-action"

LABEL com.github.actions.name="Golang Action"
Expand Down
2 changes: 1 addition & 1 deletion go1.13/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.13

LABEL name="Golang Action"
LABEL maintainer="Cedric Kring"
LABEL version="1.4.0"
LABEL version="1.4.1"
LABEL repository="https://github.com/cedrickring/golang-action"

LABEL com.github.actions.name="Golang Action"
Expand Down
Empty file modified go1.13/entrypoint.sh
100644 → 100755
Empty file.

0 comments on commit c0f74f4

Please sign in to comment.