Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update package #21

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@ checksum:
name_template: "checksums.txt"
nfpms:
- file_name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Arch }}"
homepage: https://github.com/winebarrel/rdsauth
homepage: https://github.com/kanmu/rdsauth
description: rdsauth is a tool to generate an auth token used to connect to a db with IAM credentials.
license: MIT
maintainer: "Genki Sugawara <[email protected]>"
formats:
- deb
- rpm
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# rdsauth

[![CI](https://github.com/winebarrel/rdsauth/actions/workflows/ci.yml/badge.svg)](https://github.com/winebarrel/rdsauth/actions/workflows/ci.yml)
[![CI](https://github.com/kanmu/rdsauth/actions/workflows/ci.yml/badge.svg)](https://github.com/kanmu/rdsauth/actions/workflows/ci.yml)

rdsauth is a tool to generate an auth token used to connect to a db with IAM credentials.

## Download

https://github.com/winebarrel/rdsauth/releases/latest
https://github.com/kanmu/rdsauth/releases/latest

## Usage

Expand Down
2 changes: 1 addition & 1 deletion cmd/rdsauth/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"

"github.com/alecthomas/kong"
"github.com/winebarrel/rdsauth"
"github.com/kanmu/rdsauth"
)

var version string
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/winebarrel/rdsauth
module github.com/kanmu/rdsauth

go 1.23.2

Expand Down
Loading