Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
7329115d9e
|
|||
|
f55605081a
|
|||
|
cc8c306f3c
|
|||
|
1c92f63ab1
|
|||
|
c2a6a8fbe2
|
|||
|
026dc9d765
|
|||
|
10bfe83870
|
|||
|
9fa34eb854
|
@@ -4,9 +4,12 @@ on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
tags-ignore:
|
||||
- v0
|
||||
- v1
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-go-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
@@ -41,11 +44,6 @@ jobs:
|
||||
ssh-keyscan -t rsa git.mthie.com >> ~/.ssh/known_hosts
|
||||
chmod 400 ~/.ssh/id_ecdsa ~/.ssh/config
|
||||
|
||||
- uses: actions/setup-go@v3
|
||||
with:
|
||||
go-version: '1.21'
|
||||
check-latest: true
|
||||
|
||||
- name: Build binary
|
||||
run: |
|
||||
go get ./...
|
||||
|
||||
16
History.md
16
History.md
@@ -1,3 +1,19 @@
|
||||
# 0.1.7 / 2023-10-06
|
||||
|
||||
* try the go image
|
||||
|
||||
# 0.1.6 / 2023-10-05
|
||||
|
||||
* ignore specific tags
|
||||
|
||||
# 0.1.5 / 2023-10-05
|
||||
|
||||
* fix vault path
|
||||
|
||||
# 0.1.4 / 2023-10-05
|
||||
|
||||
* fix order of actions
|
||||
|
||||
# 0.1.3 / 2023-10-05
|
||||
|
||||
* download binary
|
||||
|
||||
@@ -59,7 +59,7 @@ func main() {
|
||||
out.Close()
|
||||
resp.Body.Close()
|
||||
|
||||
cmd := exec.Command("vault")
|
||||
cmd := exec.Command("./vault")
|
||||
if err := cmd.Run(); err != nil {
|
||||
log.Panicf("error executing: %s", err)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user