diff --git a/dotnet/dotnet-push/action.yaml b/dotnet/dotnet-push/action.yaml index 39d70a0..6974d78 100644 --- a/dotnet/dotnet-push/action.yaml +++ b/dotnet/dotnet-push/action.yaml @@ -10,7 +10,7 @@ inputs: # This is for GitHub. #default: ${{ github.server_url }}/_registry/nuget/${{ github.repository_owner }}/index.json # This is for Gitea. - default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/index.json + default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/npm/ apiKey: description: "ApiKey of the nuget repository to push to." required: true diff --git a/npm/npm-diff/action.yaml b/npm/npm-diff/action.yaml index 6b4633f..6e11597 100644 --- a/npm/npm-diff/action.yaml +++ b/npm/npm-diff/action.yaml @@ -23,7 +23,7 @@ inputs: registry: description: "NPM registry URL." required: false - default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/index.json + default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/npm/ authToken: description: "Authentication token for the registry." required: true diff --git a/npm/npm-get-next-branched-version/action.yaml b/npm/npm-get-next-branched-version/action.yaml index fcc9221..b7ce9df 100644 --- a/npm/npm-get-next-branched-version/action.yaml +++ b/npm/npm-get-next-branched-version/action.yaml @@ -11,7 +11,7 @@ inputs: registry: description: "NPM registry URL." required: false - default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/index.json + default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/npm/ authToken: description: "Authentication token for the registry." required: true diff --git a/npm/npm-install/action.yaml b/npm/npm-install/action.yaml index 72339a2..f869594 100644 --- a/npm/npm-install/action.yaml +++ b/npm/npm-install/action.yaml @@ -19,7 +19,7 @@ inputs: registry: description: "NPM registry URL." required: false - default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/index.json + default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/npm/ authToken: description: "Authentication token for the registry." required: true diff --git a/npm/npm-pack-and-compare/action.yaml b/npm/npm-pack-and-compare/action.yaml index b8768d5..938cba2 100644 --- a/npm/npm-pack-and-compare/action.yaml +++ b/npm/npm-pack-and-compare/action.yaml @@ -27,7 +27,7 @@ inputs: registry: description: "NPM registry URL." required: false - default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/index.json + default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/npm/ authToken: description: "Authentication token for the registry." required: true diff --git a/npm/npm-pack/action.yaml b/npm/npm-pack/action.yaml index b81bc7d..b05bd4d 100644 --- a/npm/npm-pack/action.yaml +++ b/npm/npm-pack/action.yaml @@ -23,7 +23,7 @@ inputs: registry: description: "NPM registry URL." required: false - default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/index.json + default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/npm/ skipInstall: description: "Skip npm ci step (dependencies already installed)." required: false diff --git a/npm/npm-push/action.yaml b/npm/npm-push/action.yaml index faf72e9..e5369db 100644 --- a/npm/npm-push/action.yaml +++ b/npm/npm-push/action.yaml @@ -7,7 +7,7 @@ inputs: registry: description: "NPM registry URL." required: false - default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/index.json + default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/npm/ apiKey: description: "NPM authentication token." required: true diff --git a/npm/npm-query-versions-latest/action.yaml b/npm/npm-query-versions-latest/action.yaml index e4f3d43..349acc6 100644 --- a/npm/npm-query-versions-latest/action.yaml +++ b/npm/npm-query-versions-latest/action.yaml @@ -7,7 +7,7 @@ inputs: registry: description: "NPM registry URL." required: false - default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/index.json + default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/npm/ authToken: description: "Authentication token for the registry." required: true diff --git a/npm/npm-query-versions/action.yaml b/npm/npm-query-versions/action.yaml index cce64e3..9fc7ca0 100644 --- a/npm/npm-query-versions/action.yaml +++ b/npm/npm-query-versions/action.yaml @@ -7,7 +7,7 @@ inputs: registry: description: "NPM registry URL." required: false - default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/index.json + default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/npm/ authToken: description: "Authentication token for the registry." required: true diff --git a/nuget/nuget-compare-version/action.yaml b/nuget/nuget-compare-version/action.yaml index b678719..3abe82a 100644 --- a/nuget/nuget-compare-version/action.yaml +++ b/nuget/nuget-compare-version/action.yaml @@ -21,7 +21,7 @@ inputs: # This is for GitHub. #default: ${{ github.server_url }}/_registry/nuget/${{ github.repository_owner }}/index.json # This is for Gitea. - default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/index.json + default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/ username: description: "Username for the nuget repository to search." required: true diff --git a/nuget/nuget-install/action.yaml b/nuget/nuget-install/action.yaml index 0573be9..5540dad 100644 --- a/nuget/nuget-install/action.yaml +++ b/nuget/nuget-install/action.yaml @@ -41,7 +41,7 @@ inputs: # This is for GitHub. #default: ${{ github.server_url }}/_registry/nuget/${{ github.repository_owner }}/index.json # This is for Gitea. - default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/index.json + default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/ username: description: "Username for the nuget repository to search." required: true diff --git a/nuget/nuget-upload-nupkg/action.yaml b/nuget/nuget-upload-nupkg/action.yaml index 8c10cee..1215a9d 100644 --- a/nuget/nuget-upload-nupkg/action.yaml +++ b/nuget/nuget-upload-nupkg/action.yaml @@ -14,7 +14,7 @@ inputs: # This is for GitHub. #default: ${{ github.server_url }}/_registry/nuget/${{ github.repository_owner }}/index.json # This is for Gitea. - default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/index.json + default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/ username: description: "Username for the nuget repository to search." required: true diff --git a/nuget/nuget/action.yaml b/nuget/nuget/action.yaml index 2d19345..9a6e5e9 100644 --- a/nuget/nuget/action.yaml +++ b/nuget/nuget/action.yaml @@ -17,7 +17,7 @@ inputs: # This is for GitHub. #default: ${{ github.server_url }}/_registry/nuget/${{ github.repository_owner }}/index.json # This is for Gitea. - default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/index.json + default: ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/nuget/ username: description: "Username for the nuget repository to search." required: false