Compare commits

..

12 Commits

Author SHA1 Message Date
2785d64c02 Update README.md
All checks were successful
test / test (push) Successful in 21s
2025-04-20 05:28:17 +00:00
09214e49b9 [config] revert trigger changes
All checks were successful
test / test (push) Successful in 15s
2025-04-04 14:27:53 -04:00
67be40ad0d [config] Workflow trigger updates
All checks were successful
test / test (push) Successful in 15s
2025-04-04 14:25:59 -04:00
8febe20c2a Update README.md
All checks were successful
test / test (push) Successful in 16s
2025-04-04 18:24:32 +00:00
86ce64c8d1 readme update
All checks were successful
test / test (push) Successful in 16s
2025-04-04 14:23:12 -04:00
0a2cc6f296 Merge pull request 'fix/bugfix-input' (#1) from fix/bugfix-input into master
All checks were successful
test / test (push) Successful in 15s
Reviewed-on: #1
2025-04-04 18:19:13 +00:00
23d8078bcf revert test trigger for merge 2025-04-04 14:16:47 -04:00
0e0785fb67 [test] fixing workflow
All checks were successful
test / test (push) Successful in 17s
- workflow had a bug around env vars
- was expecting inputs vs env
2025-04-04 14:15:24 -04:00
4a01816864 [test] workflow trigger
Some checks failed
test / test (push) Failing after 4s
2025-04-04 14:10:21 -04:00
5b464d64cc [test] workflow trigger 2025-04-04 14:09:38 -04:00
ae390bc529 [fix] Requiring arch input with default 2025-04-04 14:08:59 -04:00
aa2d4b0a5c file permissions update
Some checks failed
test / test (push) Failing after 4s
2025-04-03 23:44:00 -04:00
4 changed files with 8 additions and 6 deletions

View File

@ -2,9 +2,8 @@ name: "test"
run-name: "test"
on:
push:
tags:
- "v*"
- "!v*-beta*"
branches:
- master
jobs:
test:
@ -21,9 +20,11 @@ jobs:
shell: bash
env:
GO_INSTALL_COMMANDS: github.com/jake-young-dev/kelp@v0.0.9
GO_INSTALL_ARCH: amd64
GO_INSTALL_PURGE: no
run: |
chmod +x install.sh
./install.sh amd64 no
./install.sh
- name: "check go version"
shell: bash

View File

@ -1,4 +1,5 @@
# install-go
![tests](https://code.jakeyoungdev.com/actions/install-go/actions/workflows/test.yaml/badge.svg?branch=master&event=push) <br />
An extremely simple github action to install golang and golang commands (using "go install") on linux hosts. This provides the ability to install and setup golang without node/typescript which is required when using [actions/setup-go](https://github.com/actions/setup-go).
@ -9,7 +10,7 @@ Use a tagged release to avoid unexpected changes that may come to the master bra
uses: https://code.jakeyoungdev.com/actions/install-go@master
with:
commands: |
github.com/jake-young-dev/kelp@v0.0.9
code.jakeyoungdev.com/jake/mctl@v0.3.3
```
#### Go verions

View File

@ -3,7 +3,7 @@ description: "simple and fast install for golang and golang commands on linux wo
inputs:
arch:
description: "Optional, the linux architecture to use when downloading Go files (default: amd64)"
required: false
required: true
default: "amd64"
purge:
description: "Optional, deletes any previously installed go versions (yes|no)"

0
install.sh Normal file → Executable file
View File