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

feat: implement release-please workflow #12967

Merged
merged 2 commits into from
Jan 18, 2023
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
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",
dantaik marked this conversation as resolved.
Show resolved Hide resolved
"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": {}
}
}