Skip to content

Commit

Permalink
fix: rename package name to github-action-for-cli (#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shurtu-gal authored Jan 9, 2024
1 parent 2c68a25 commit d6da896
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
}
],
"contributorsPerLine": 7,
"projectName": "github-action-for-generator",
"projectName": "github-action-for-cli",
"projectOwner": "asyncapi",
"repoType": "github",
"repoHost": "https://github.com",
Expand Down
4 changes: 2 additions & 2 deletions .asyncapi-tool
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
title: GitHub Action for Generator
title: GitHub Action for CLI
filters:
technology:
- AsyncAPI Generator
- AsyncAPI CLI
categories:
- github-action
6 changes: 3 additions & 3 deletions .github/workflows/release-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
run: |
echo ${{secrets.DOCKER_PASSWORD}} | docker login -u ${{secrets.DOCKER_USERNAME}} --password-stdin
npm run docker:build
docker tag asyncapi/github-action-for-generator:latest asyncapi/github-action-for-generator:${{ steps.version.outputs.value }}
docker push asyncapi/github-action-for-generator:${{ steps.version.outputs.value }}
docker push asyncapi/github-action-for-generator:latest
docker tag asyncapi/github-action-for-cli:latest asyncapi/github-action-for-cli:${{ steps.version.outputs.value }}
docker push asyncapi/github-action-for-cli:${{ steps.version.outputs.value }}
docker push asyncapi/github-action-for-cli:latest
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# GitHub Action for Generator
# GitHub Action for CLI
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
[![All Contributors](https://img.shields.io/badge/all_contributors-5-orange.svg?style=flat-square)](#contributors-)
<!-- ALL-CONTRIBUTORS-BADGE:END -->
Expand Down
6 changes: 4 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "github-action-for-generator",
"name": "github-action-for-cli",
"description": "This is to be used for running tests for the GitHub Action using the MakeFile",
"version": "3.0.0",
"scripts": {
"test": "make test",
"generate:assets": "echo 'No additional assets need to be generated at the moment'",
"docker:build": "docker build -t asyncapi/github-action-for-generator:latest ."
"docker:build": "docker build -t asyncapi/github-action-for-cli:latest ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/github-action-for-generator.git"
"url": "git+https://github.com/asyncapi/github-action-for-cli.git"
},
"keywords": [
"GitHub",
Expand All @@ -18,7 +19,7 @@
"author": "Lukasz Gornicki <lpgornicki@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/asyncapi/github-action-for-generator/issues"
"url": "https://github.com/asyncapi/github-action-for-cli/issues"
},
"homepage": "https://github.com/asyncapi/github-action-for-generator#readme"
"homepage": "https://github.com/asyncapi/github-action-for-cli#readme"
}

0 comments on commit d6da896

Please sign in to comment.