Skip to content

Commit

Permalink
fix: change the version in package.json and use another library for g…
Browse files Browse the repository at this point in the history
…enerating release note
  • Loading branch information
ducpm511 committed Jul 1, 2024
1 parent dd27767 commit 16c743e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/release-tagging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,11 @@ jobs:
git push origin "v${{ steps.get_version.outputs.version }}"
- name: Create GitHub Release
if: steps.check_tag.outputs.exists == 'false'
id: create_release
uses: actions/create-release@v1
uses: ncipollo/release-action@v1
with:
tag_name: "v${{ steps.get_version.outputs.version }}"
release_name: "Release ${{ steps.get_version.outputs.version }}"
body: "Automatically generated release notes for version ${{ steps.get_version.outputs.version }}"
draft: false
tag: "v${{ steps.get_version.outputs.version }}"
name: "Release ${{ steps.get_version.outputs.version }}"
generateReleaseNotes: true
prerelease: false


2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vckit",
"version": "1.0.0-beta.5",
"version": "1.0.0-beta.5.0.1",
"scripts": {
"postinstall": "mkdir .tmp_npm; cd .tmp_npm; mkdir veramo; cd veramo; git init; git remote add -f origin https://github.com/gs-gs/veramo.git; git pull --depth=1 origin vc-v2; pnpm install; pnpm build;",
"build": "pnpm build:agent && pnpm build:explorer",
Expand Down

0 comments on commit 16c743e

Please sign in to comment.