8 Commits

Author SHA1 Message Date
10bfe83870 prepare release v0.1.4
Some checks failed
Create Release / build (push) Failing after 20s
2023-10-05 20:48:16 +02:00
9fa34eb854 fix order of actions 2023-10-05 20:48:01 +02:00
cc28018025 prepare release v0.1.3
Some checks failed
Create Release / build (push) Failing after 4s
2023-10-05 20:46:46 +02:00
00377ec276 download binary 2023-10-05 20:46:23 +02:00
87a818c212 prepare release v0.1.2
All checks were successful
Create Release / build (push) Successful in 27s
2023-10-05 20:11:55 +02:00
adc73936a2 Empty Commit 2023-10-05 20:11:40 +02:00
231d2e48b2 prepare release v0.1.1 2023-10-05 20:11:01 +02:00
b24c065b53 add binary release 2023-10-05 20:10:25 +02:00
7 changed files with 154 additions and 2 deletions

View File

@@ -0,0 +1,59 @@
name: Create Release
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-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
with:
url: ${{ env.VAULT_ADDR }}
method: ${{ env.VAULT_AUTH_TYPE}}
roleId: ${{ env.VAULT_APPROLE_ID }}
secretId: ${{ env.VAULT_APPROLE_SECRET }}
secrets: |
passwords/data/ssh id_ecdsa | DEPLOY_KEY;
passwords/data/ssh ssh_config | SSH_CONFIG;
passwords/data/git.mthie.com gitconfig | GITCONFIG;
passwords/data/git.mthie.com api_key | API_TOKEN
- uses: actions/checkout@v3
- name: init system
run: |
mkdir -p ~/.ssh && chmod 700 ~/.ssh
git config --global user.email "github@mthie.com"
git config --global user.name "Gitea Cron"
git config pull.rebase true
echo "${{ env.DEPLOY_KEY }}" > ~/.ssh/id_ecdsa
echo "${{ env.SSH_CONFIG }}" > ~/.ssh/config
echo '${{ env.GITCONFIG }}' > ~/.gitconfig
cat ~/.gitconfig
ssh-keyscan -t rsa git.mthie.com >> ~/.ssh/known_hosts
chmod 400 ~/.ssh/id_ecdsa ~/.ssh/config
- name: Build binary
run: |
go get ./...
go build -o bin/vault *.go
- name: Create Release
uses: https://gitea.com/actions/release-action@main
with:
files: |-
bin/**
api_key: '${{ env.API_TOKEN }}'

View File

@@ -1,3 +1,19 @@
# 0.1.4 / 2023-10-05
* fix order of actions
# 0.1.3 / 2023-10-05
* download binary
# 0.1.2 / 2023-10-05
* test release
# 0.1.1 / 2023-10-05
* add binary release
# 0.1.0 / 2023-10-05 # 0.1.0 / 2023-10-05
* remove debugging * remove debugging
@@ -6,4 +22,4 @@
# 0.0.1 / 2023-10-05 # 0.0.1 / 2023-10-05
* Initial version * Initial version

View File

@@ -22,4 +22,4 @@ inputs:
required: false required: false
runs: runs:
using: 'go' using: 'go'
main: 'main.go' main: 'cmd/main.go'

3
cmd/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module git.mthie.com/mthie/vault-action/cmd
go 1.21.1

66
cmd/main.go Normal file
View File

@@ -0,0 +1,66 @@
package main
import (
"context"
"encoding/json"
"io"
"log"
"net/http"
"os"
"os/exec"
)
func main() {
req, err := http.NewRequestWithContext(context.Background(), http.MethodGet, "https://git.mthie.com/api/v1/repos/mthie/vault-action/releases", nil)
if err != nil {
log.Panicf("error creating download request: %s", err)
}
resp, err := http.DefaultClient.Do(req)
if err != nil {
log.Panicf("error getting download information: %s", err)
}
type releaseInfo []struct {
Assets []struct {
URL string `json:"browser_download_url"`
} `json:"assets"`
}
downloadData := releaseInfo{}
if err := json.NewDecoder(resp.Body).Decode(&downloadData); err != nil {
log.Panicf("error decoding release information: %s", err)
}
resp.Body.Close()
if len(downloadData) == 0 || len(downloadData[0].Assets) == 0 {
log.Panic("no binary found")
}
req, err = http.NewRequestWithContext(context.Background(), http.MethodGet, downloadData[0].Assets[0].URL, nil)
if err != nil {
log.Panicf("error creating download request: %s", err)
}
resp, err = http.DefaultClient.Do(req)
if err != nil {
log.Panicf("error downloading binary: %s", err)
}
out, err := os.OpenFile("vault", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0755)
if err != nil {
log.Panicf("error creating file: %s", err)
}
if _, err = io.Copy(out, resp.Body); err != nil {
log.Panicf("error writing download data: %s", err)
}
out.Close()
resp.Body.Close()
cmd := exec.Command("vault")
if err := cmd.Run(); err != nil {
log.Panicf("error executing: %s", err)
}
}

8
cmd/tmp.txt Normal file
View File

@@ -0,0 +1,8 @@
DEPLOY_KEY<<_GitHubActionsFileCommandDelimeter_
-----BEGIN EC PRIVATE KEY-----
MIGkAgEBBDB7OBLldAAcXseFvIF4DOBfLdaiQtUUnGU8UddpoUeCCGe/lwsMQzns
U0mOdkGAWwygBwYFK4EEACKhZANiAAQC8rWLLnxti4P4YpmAyb6xsD8Uv8ZKM7qJ
N6Lh2JqttfFp03s5fSjWIibDjwCBGqSTBitFU1YcJvc9ewWUOxHrta782GChVgjl
loezmUvX1oLCE0Koqd/U+fJnyC+LvJA=
-----END EC PRIVATE KEY-----
_GitHubActionsFileCommandDelimeter_

BIN
cmd/vault Executable file

Binary file not shown.