-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8baddd5
commit 5924939
Showing
8 changed files
with
28,264 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: "Close Nexus Staging Repository" | ||
description: "Closes a staging Nexus repository." | ||
author: TheMrMilchmann | ||
inputs: | ||
username: | ||
description: 'The username to use to authenticate against the Nexus.' | ||
required: true | ||
password: | ||
description: 'The password to use to authenticate against the Nexus.' | ||
required: true | ||
base-url: | ||
description: 'The base URL of the Nexus instance.' | ||
required: true | ||
default: 'https://oss.sonatype.org/' | ||
staging-repository-id: | ||
description: 'The ID of the staging repository.' | ||
required: true | ||
description: | ||
description: 'An optional description for the closed repository.' | ||
required: false | ||
default: 'Closed by GitHub Actions' | ||
transition-timeout: | ||
description: 'The maximum time (in minutes) to wait for the repository to transition.' | ||
required: true | ||
default: '5' | ||
runs: | ||
using: node20 | ||
main: '../dist/close-staging-repo/index.js' | ||
branding: | ||
icon: lock | ||
color: green |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: "Create Nexus Staging Repository" | ||
description: "Creates a new staging Nexus repository." | ||
author: TheMrMilchmann | ||
inputs: | ||
username: | ||
description: 'The username to use to authenticate against the Nexus.' | ||
required: true | ||
password: | ||
description: 'The password to use to authenticate against the Nexus.' | ||
required: true | ||
base-url: | ||
description: 'The base URL of the Nexus instance.' | ||
required: true | ||
default: 'https://oss.sonatype.org/' | ||
staging-profile-id: | ||
description: 'The ID of the staging profile.' | ||
required: true | ||
description: | ||
description: 'An optional description for the staging repository.' | ||
required: false | ||
default: 'Created by GitHub Actions' | ||
outputs: | ||
repository-id: | ||
description: 'The ID of the newly created staging repository.' | ||
runs: | ||
using: node20 | ||
main: '../dist/create-staging-repo/index.js' | ||
branding: | ||
icon: lock | ||
color: green |
Oops, something went wrong.