ci: Updated release flow for gman

This commit is contained in:
2025-09-12 11:40:03 -06:00
parent ea4bd5d81a
commit 3cc5b31beb
3 changed files with 82 additions and 2 deletions
+32
View File
@@ -0,0 +1,32 @@
name: Release G-Man Homebrew tap
on: [push]
jobs:
test:
strategy:
matrix:
runs-on: ['macOS-latest', 'ubuntu-latest']
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v1
- name: Build and release Linux G-Man Tap
if: matrix.runs-on == 'ubuntu-latest'
shell: bash
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
(echo; echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"') >> /home/runner/.bash_profile
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
brew tap dark-alex-17/gman $(pwd)
brew install --build-bottle --verbose gman
gman -h
- name: Build and release MacOS G-Man Tap
if: matrix.runs-on == 'macOS-latest'
shell: bash
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
(echo; echo 'eval "$(/usr/local/bin/brew shellenv)"') >> /Users/runner/.bash_profile
eval "$(/usr/local/bin/brew shellenv)"
brew tap dark-alex-17/gman $(pwd)
brew install --build-bottle --verbose gman
gman -h
+23
View File
@@ -0,0 +1,23 @@
# Documentation: https://docs.brew.sh/Formula-Cookbook
# https://rubydoc.brew.sh/Formula
class GMan < Formula
desc "Universal command line credential management and injection tool"
homepage "https://github.com/Dark-Alex-17/gman"
if OS.mac? and Hardware::CPU.arm?
url "https://github.com/Dark-Alex-17/gman/releases/download/v0.1.0/gman-macos-arm64.tar.gz"
sha256 "000810bd48016eac9a000e8ddeaa58fba8932cdfb6b211e63b8678e35338cce1"
elsif OS.mac? and Hardware::CPU.intel?
url "https://github.com/Dark-Alex-17/gman/releases/download/v0.1.0/gman-macos.tar.gz"
sha256 "5611a2a8caaff313e20f9e51eaf39d6e48a6f3ed57f9b08cb78e32cea4a8e615"
else
url "https://github.com/Dark-Alex-17/gman/releases/download/v0.1.0/gman-linux-musl.tar.gz"
sha256 "a20e618a8b25bc4bd8b749f446c09001f8c28a00e072703a0bb6b469cdae1f43"
end
version "0.1.0"
license "BSD-3-Clause"
def install
bin.install "gman"
ohai "You're done! Get started with \"gman --help\""
end
end
+27 -2
View File
@@ -1,2 +1,27 @@
# homebrew-gman # G-Man - Universal command line credential management and injection tool
Homebrew Tap for G-Man
```
____ __ __
/ ___| | \/ | __ _ _ __
| | _ _____| |\/| |/ _` | '_ \
| |_| |_____| | | | (_| | | | |
\____| |_| |_|\__,_|_| |_|
```
`gman` is a command-line tool for managing and injecting secrets for your scripts, automations, and applications.
It provides a single, secure interface to store, retrieve, and inject secrets so you can stop hand-rolling config
files or sprinkling environment variables everywhere.
**This repo holds the Homebrew Tap and Formula for [G-Man](https://github.com/Dark-Alex-17/gman)**
# Install with
```
brew tap Dark-Alex-17/gman
brew install gman
# If you need to be more specific, use:
brew install Dark-Alex-17/gman/gman
```