Skip to content

Commit

Permalink
chore: fix version names
Browse files Browse the repository at this point in the history
  • Loading branch information
Shurtu-gal committed Jan 9, 2024
1 parent 174627f commit 0ae75f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/if-nodejs-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ jobs:
- if: steps.packagejson.outputs.exists == 'true'
name: Add plugin for conventional commits for semantic-release
run: npm install --save-dev [email protected]
- if: steps.packagejson.outputs.exists == 'true'
name: Add plugin for executing normal commands
run: npm install --save-dev @semantic-release/exec
- if: steps.packagejson.outputs.exists == 'true'
name: Publish to any of NPM, Github, and Docker Hub
id: release
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ run:

# Updates the action.yml file with the latest version of the action got from $VERSION env variable
generate-assets:
sed "s/docker:\/\/asyncapi\/github-action-for-cli:.*/docker:\/\/asyncapi\/github-action-for-cli:${VERSION}'/g" action.yml > action.yml.tmp
version=$$(echo ${VERSION} | sed 's/v//g'); \
sed "s/docker:\/\/asyncapi\/github-action-for-cli:.*/docker:\/\/asyncapi\/github-action-for-cli:$$version'/g" action.yml > action.yml.tmp
@mv action.yml.tmp action.yml

test: test-default test-validate-success test-validate-fail test-custom-output test-custom-commands test-optimize test-bundle test-convert
Expand Down

0 comments on commit 0ae75f8

Please sign in to comment.