Skip to content

Commit f5cb484

Browse files
fix up name
1 parent 936d014 commit f5cb484

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/actions/publish-to-nexus/action.yml renamed to .github/actions/publish-to-artifactory/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
name: 'publish-to-nexus'
3-
description: 'Composite action to publish to nexus'
2+
name: 'publish-to-artifactory'
3+
description: 'Composite action to publish to artifactory'
44
inputs:
55
publish-version:
66
description: 'version to publish with'

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
name: jar
9191
path: 'build/libs/'
9292

93-
publishToNexus:
93+
publishToArtifactory:
9494
needs:
9595
- assemble
9696
- unitTests
@@ -120,8 +120,8 @@ jobs:
120120
id: project_version
121121
uses: ConsenSys/github-actions/java-get-project-version@main
122122

123-
- name: Publish to Nexus
123+
- name: Publish to artifactory
124124
if: "!startsWith(github.ref, 'refs/tags/')"
125-
uses: ./.github/actions/publish-to-nexus
125+
uses: ./.github/actions/publish-to-artifactory
126126
with:
127127
publish-version: ${{ steps.project_version.outputs.specific-version }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
fail_on_unmatched_files: true
5252
files: ./build/libs/besu-fleet-plugin-${{ steps.get_version.outputs.VERSION }}.jar
5353

54-
- name: Publish to Nexus
54+
- name: Publish to artifactory
5555
if: "!startsWith(github.ref, 'refs/tags/')"
56-
uses: ./.github/actions/publish-to-nexus
56+
uses: ./.github/actions/publish-to-artifactory
5757
with:
5858
publish-version: ${{ steps.get_version.outputs.VERSION }}

0 commit comments

Comments
 (0)