Skip to content

Commit

Permalink
feat: implement release-please workflow (#12967)
Browse files Browse the repository at this point in the history
  • Loading branch information
d1onys1us authored Jan 18, 2023
1 parent 477d936 commit b0c8b60
Show file tree
Hide file tree
Showing 9 changed files with 59 additions and 8 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
on:
push:
branches:
- main
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
command: manifest
11 changes: 11 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
".": "0.3.0",
"packages/branding": "0.0.0",
"packages/bridge-ui": "0.0.0",
"packages/protocol": "0.0.0",
"packages/relayer": "0.0.0",
"packages/status-page": "0.0.0",
"packages/tokenomics": "0.0.0",
"packages/website": "0.0.0",
"packages/whitepaper": "1.2.2"
}
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright 2022 Taiko Labs
Copyright 2023 Taiko Labs

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
9 changes: 2 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
{
"name": "taiko-mono",
"version": "1.0.0",
"description": "",
"main": "index.js",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"husky": "^8.0.3"
}
Expand Down
5 changes: 5 additions & 0 deletions packages/branding/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name": "@taiko/branding",
"version": "0.0.0",
"private": true
}
5 changes: 5 additions & 0 deletions packages/relayer/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name": "@taiko/relayer",
"version": "0.0.0",
"private": true
}
5 changes: 5 additions & 0 deletions packages/tokenomics/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name": "@taiko/tokenomics",
"version": "0.0.0",
"private": true
}
5 changes: 5 additions & 0 deletions packages/whitepaper/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name": "@taiko/whitepaper",
"version": "1.2.2",
"private": true
}
13 changes: 13 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"packages": {
".": {},
"packages/branding": {},
"packages/bridge-ui": {},
"packages/protocol": {},
"packages/relayer": {},
"packages/status-page": {},
"packages/tokenomics": {},
"packages/website": {},
"packages/whitepaper": {}
}
}

1 comment on commit b0c8b60

@Tigerilyas
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good

Please sign in to comment.