Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: rename package name to github-action-for-cli #371

Merged
merged 1 commit into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
}
Loading