From 8d96ce8ad69ce822bd137179fbf31b97ae160403 Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Fri, 13 Sep 2024 18:06:14 +0200 Subject: [PATCH] Use the correct casing for API-key in gopass entry Gopass on Fedora 40 is case sensitive for keys where older versions were case-insensitive. --- bin/release-module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/release-module b/bin/release-module index 01e3951..cdcac8e 100755 --- a/bin/release-module +++ b/bin/release-module @@ -16,4 +16,4 @@ if basename "$PWD" | grep -E -q '^puppet-(candlepin|dns|dhcp|git|pulp|pulpcore|m fi BLACKSMITH_FORGE_USERNAME="$(jq -r .author metadata.json | tr '[:upper:]' '[:lower:]')" -BLACKSMITH_FORGE_API_KEY="$(gopass show "theforeman/shared/forge.puppet.com/$BLACKSMITH_FORGE_USERNAME" api-key)" bundle exec rake module:clean module:push +BLACKSMITH_FORGE_API_KEY="$(gopass show "theforeman/shared/forge.puppet.com/$BLACKSMITH_FORGE_USERNAME" API-key)" bundle exec rake module:clean module:push