Skip to content
Closed
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
2 changes: 1 addition & 1 deletion src/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = async function publish(
) {
if (gemPublish !== false) {
logger.log(`Publishing version ${version} to gem server`);
const args = ['push', gemFile, '--config-file', credentialsFile];
const args = ['push', gemFile, '--config-file', credentialsFile, '--key', 'api_key'];
if (gemHost) {
args.push('--host', gemHost);
}
Expand Down
3 changes: 1 addition & 2 deletions src/verifyConditions.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ You can retrieve an API key either from your \`~/.gem/credentials\` file or in y

await writeFile(
credentialsFile,
// TODO: Handle other hosts
`---\n:rubygems_api_key: ${env.GEM_HOST_API_KEY}`,
`---\n:api_key: ${env.GEM_HOST_API_KEY}`,
'utf8',
);
};
Expand Down