generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
31 lines (31 loc) · 1.09 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: 'Configure RubyGems Credentials'
description: 'Configure rubygems.org credential environment variables for use in other GitHub Actions.'
branding:
icon: 'package'
color: 'red'
author: 'RubyGems'
inputs:
gem-server:
required: false
description: 'The gem server to configure credentials for. Defaults to https://rubygems.org.'
default: 'https://rubygems.org'
audience:
default: 'rubygems.org'
description: 'The audience to use for the OIDC provider. Defaults to rubygems.org.'
required: false
role-to-assume:
description: >-
Use the provided credentials to assume an OIDC api token role and configure the Actions
environment with the assumed role credentials rather than with the provided
credentials
required: false
api-token:
description: 'The rubygems api token to use for authentication.'
required: false
trusted-publisher:
description: >-
Whether to configure the credentials as a trusted publisher. Defaults to true if no other configuration is given.
required: false
runs:
using: 'node20'
main: 'dist/index.js'