Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 26, 2023
1 parent 8baddd5 commit 5924939
Show file tree
Hide file tree
Showing 8 changed files with 28,264 additions and 0 deletions.
31 changes: 31 additions & 0 deletions close-staging-repo/action.yml
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
30 changes: 30 additions & 0 deletions create-staging-repo/action.yml
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
Loading

0 comments on commit 5924939

Please sign in to comment.