Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
776deb2f3a
|
|||
|
7c27907f24
|
|||
|
7329115d9e
|
|||
|
f55605081a
|
|||
|
cc8c306f3c
|
|||
|
1c92f63ab1
|
|||
|
c2a6a8fbe2
|
|||
|
026dc9d765
|
@@ -4,19 +4,17 @@ on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
tags-ignore:
|
||||
- v0
|
||||
- v1
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-go-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
|
||||
steps:
|
||||
- uses: actions/setup-go@v3
|
||||
with:
|
||||
go-version: '1.21'
|
||||
check-latest: true
|
||||
|
||||
- name: Import Secrets
|
||||
id: import-secrets
|
||||
uses: https://git.mthie.com/mthie/vault-action@v0
|
||||
|
||||
18
History.md
18
History.md
@@ -1,3 +1,19 @@
|
||||
# 0.1.8 / 2023-10-06
|
||||
|
||||
* downgrade go version
|
||||
|
||||
# 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
|
||||
@@ -22,4 +38,4 @@
|
||||
|
||||
# 0.0.1 / 2023-10-05
|
||||
|
||||
* Initial version
|
||||
* Initial version
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module git.mthie.com/mthie/vault-action/cmd
|
||||
|
||||
go 1.21.1
|
||||
go 1.21
|
||||
|
||||
@@ -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