Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit d6da896

Browse files
authored
fix: rename package name to github-action-for-cli (#371)
1 parent 2c68a25 commit d6da896

File tree

6 files changed

+17
-14
lines changed

6 files changed

+17
-14
lines changed

.all-contributorsrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
}
5656
],
5757
"contributorsPerLine": 7,
58-
"projectName": "github-action-for-generator",
58+
"projectName": "github-action-for-cli",
5959
"projectOwner": "asyncapi",
6060
"repoType": "github",
6161
"repoHost": "https://github.com",

.asyncapi-tool

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
title: GitHub Action for Generator
1+
title: GitHub Action for CLI
22
filters:
33
technology:
4-
- AsyncAPI Generator
4+
- AsyncAPI CLI
55
categories:
66
- github-action

.github/workflows/release-docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
run: |
2525
echo ${{secrets.DOCKER_PASSWORD}} | docker login -u ${{secrets.DOCKER_USERNAME}} --password-stdin
2626
npm run docker:build
27-
docker tag asyncapi/github-action-for-generator:latest asyncapi/github-action-for-generator:${{ steps.version.outputs.value }}
28-
docker push asyncapi/github-action-for-generator:${{ steps.version.outputs.value }}
29-
docker push asyncapi/github-action-for-generator:latest
27+
docker tag asyncapi/github-action-for-cli:latest asyncapi/github-action-for-cli:${{ steps.version.outputs.value }}
28+
docker push asyncapi/github-action-for-cli:${{ steps.version.outputs.value }}
29+
docker push asyncapi/github-action-for-cli:latest

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# GitHub Action for Generator
1+
# GitHub Action for CLI
22
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
33
[![All Contributors](https://img.shields.io/badge/all_contributors-5-orange.svg?style=flat-square)](#contributors-)
44
<!-- ALL-CONTRIBUTORS-BADGE:END -->

package-lock.json

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
2-
"name": "github-action-for-generator",
2+
"name": "github-action-for-cli",
33
"description": "This is to be used for running tests for the GitHub Action using the MakeFile",
4+
"version": "3.0.0",
45
"scripts": {
56
"test": "make test",
67
"generate:assets": "echo 'No additional assets need to be generated at the moment'",
7-
"docker:build": "docker build -t asyncapi/github-action-for-generator:latest ."
8+
"docker:build": "docker build -t asyncapi/github-action-for-cli:latest ."
89
},
910
"repository": {
1011
"type": "git",
11-
"url": "git+https://github.com/asyncapi/github-action-for-generator.git"
12+
"url": "git+https://github.com/asyncapi/github-action-for-cli.git"
1213
},
1314
"keywords": [
1415
"GitHub",
@@ -18,7 +19,7 @@
1819
"author": "Lukasz Gornicki <[email protected]>",
1920
"license": "Apache-2.0",
2021
"bugs": {
21-
"url": "https://github.com/asyncapi/github-action-for-generator/issues"
22+
"url": "https://github.com/asyncapi/github-action-for-cli/issues"
2223
},
23-
"homepage": "https://github.com/asyncapi/github-action-for-generator#readme"
24+
"homepage": "https://github.com/asyncapi/github-action-for-cli#readme"
2425
}

0 commit comments

Comments
 (0)