Skip to content

Commit

Permalink
Merge pull request #7 from Chia-Network/develop
Browse files Browse the repository at this point in the history
Release 1.0.1
  • Loading branch information
TheLastCicada authored Sep 22, 2023
2 parents e38f689 + de52d99 commit dbb11d2
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ concurrency:
group: main-release-check

jobs:
check-version:
name: Tag and Release
tag-and-changelog:
name: Changelog and Tag
runs-on: ubuntu-latest
steps:
- name: Clean workspace
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
changes=$(npx conventional-changelog-cli -r 1 | tail -n +2)
git add CHANGELOG.md
git commit -m "chore: Updating changelog for $version"
git tag $version -m "Release $version \n$changes"
git tag $version -m "Release $version $changes"
git push origin $version
git push origin main
fi
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Create Release

on:
push:
tags:
- "**"

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}

jobs:
release:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Release
uses: softprops/[email protected]
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@chia-carbon/core-registry-logger",
"version": "1.0.0",
"version": "1.0.1",
"description": "Custom logger for core registry projects",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Chia Network",
"email": "[email protected]",
"url": "https://www.chia.net/",
"homepage": "https://www.chia.net/",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down

0 comments on commit dbb11d2

Please sign in to comment.