-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: manually release & uninstall changesets (#41)
* ci: manually release workflow * ci: remove changesets and clean * ci: publish with provenance * ci: dedupe & improve * chore: bump to v0.5.0 * chore: changelog link to github release * build: update peer dependencies this block by changsets but now it has ben uninstalled
- Loading branch information
Showing
26 changed files
with
138 additions
and
1,248 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
bump: | ||
required: true | ||
type: choice | ||
options: | ||
- next | ||
- patch | ||
- minor | ||
- major | ||
- prepatch | ||
- preminor | ||
- premajor | ||
|
||
preid: | ||
type: choice | ||
required: true | ||
default: beta | ||
options: | ||
- alpha | ||
- beta | ||
- canary | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: pnpm/action-setup@v4 | ||
|
||
- run: pnpm i | ||
|
||
- run: | | ||
git config --global user.name "github-actions[bot]" | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
- run: pnpm run packages:bump ${{ github.event.inputs.bump }} --yes --preid ${{ github.event.inputs.preid }} | ||
|
||
- run: pnpm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" | ||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
- run: pnpm run packages:publish --tag="${{ github.event.inputs.preid || 'latest' }}" | ||
env: | ||
NPM_CONFIG_PROVENANCE: true | ||
|
||
- run: pnpm run packages:changelog:github | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
!.npmrc | ||
!.*.example | ||
!.vscode/ | ||
!.changeset/ | ||
!.github/ | ||
|
||
# Common generated folders | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Changelog | ||
|
||
For a complete list of changes, visit our [GitHub Releases page](https://github.com/unnoq/orpc/releases). | ||
|
||
Stay updated with the latest features, fixes, and improvements! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,91 +1,5 @@ | ||
# @orpc/client | ||
# Changelog | ||
|
||
## 0.0.6 | ||
For a complete list of changes, visit our [GitHub Releases page](https://github.com/unnoq/orpc/releases). | ||
|
||
### Patch Changes | ||
|
||
- [`ea94dfe`](https://github.com/unnoq/orpc/commit/ea94dfedb57a04aa173f29b00e198af3015fa633) Thanks [@unnoq](https://github.com/unnoq)! - fix: bundle unexpected deps | ||
|
||
- Updated dependencies [[`68f9a38`](https://github.com/unnoq/orpc/commit/68f9a38f77146ac0b9e61b4a18156753bf62a903), [`ea94dfe`](https://github.com/unnoq/orpc/commit/ea94dfedb57a04aa173f29b00e198af3015fa633)]: | ||
- @orpc/shared@0.1.1 | ||
- @orpc/transformer@0.0.6 | ||
|
||
## 0.0.5 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`3bc7898`](https://github.com/unnoq/orpc/commit/3bc789835a4c95551779c0c136fbf6ba40b79590)]: | ||
- @orpc/shared@0.1.0 | ||
- @orpc/transformer@0.0.5 | ||
|
||
## 0.0.4 | ||
|
||
### Patch Changes | ||
|
||
- [#25](https://github.com/unnoq/orpc/pull/25) [`2759965`](https://github.com/unnoq/orpc/commit/27599650d434049b4861bf4f9df8efb621fd60aa) Thanks [@unnoq](https://github.com/unnoq)! - chore: bump version | ||
|
||
## 2.0.0 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`d6f69ef`](https://github.com/unnoq/orpc/commit/d6f69ef1ee5f29a1419fe293cd1b9528be2e59fb)]: | ||
- @orpc/contract@0.1.0 | ||
- @orpc/server@0.2.0 | ||
|
||
## 1.0.2 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`b16f327`](https://github.com/unnoq/orpc/commit/b16f327fc4587cebc6eb1a600896f5a5a30d66a4)]: | ||
- @orpc/server@0.1.2 | ||
|
||
## 1.0.1 | ||
|
||
### Patch Changes | ||
|
||
- [`865646b`](https://github.com/unnoq/orpc/commit/865646b73f72bc293b7a9965a41e95c1886dbace) Thanks [@unnoq](https://github.com/unnoq)! - chore: dedupe code | ||
|
||
- Updated dependencies [[`865646b`](https://github.com/unnoq/orpc/commit/865646b73f72bc293b7a9965a41e95c1886dbace), [`865646b`](https://github.com/unnoq/orpc/commit/865646b73f72bc293b7a9965a41e95c1886dbace)]: | ||
- @orpc/server@0.1.1 | ||
|
||
## 1.0.0 | ||
|
||
### Patch Changes | ||
|
||
- [`ab80aa6`](https://github.com/unnoq/orpc/commit/ab80aa614bcd4c5bff641ed693e2f86178235238) Thanks [@unnoq](https://github.com/unnoq)! - build: optimize | ||
|
||
- Updated dependencies [[`8e9a954`](https://github.com/unnoq/orpc/commit/8e9a954ab8a13a4d968caaf4aa67b70c2d38c914), [`ab80aa6`](https://github.com/unnoq/orpc/commit/ab80aa614bcd4c5bff641ed693e2f86178235238), [`8e9a954`](https://github.com/unnoq/orpc/commit/8e9a954ab8a13a4d968caaf4aa67b70c2d38c914)]: | ||
- @orpc/server@0.1.0 | ||
- @orpc/transformer@0.0.4 | ||
- @orpc/contract@0.0.4 | ||
- @orpc/shared@0.0.5 | ||
|
||
## 0.0.3 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`7e5011f`](https://github.com/unnoq/orpc/commit/7e5011ff86cbc5426ec5624370a52d75d43dc190), [`7e5011f`](https://github.com/unnoq/orpc/commit/7e5011ff86cbc5426ec5624370a52d75d43dc190), [`90282e4`](https://github.com/unnoq/orpc/commit/90282e4482c1def9378307175046854039454708)]: | ||
- @orpc/shared@0.0.4 | ||
- @orpc/server@0.0.3 | ||
- @orpc/contract@0.0.3 | ||
- @orpc/transformer@0.0.3 | ||
|
||
## 0.0.2 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`c47e021`](https://github.com/unnoq/orpc/commit/c47e02148efae4bbed4e67fe6b8ff2d1540878be)]: | ||
- @orpc/shared@0.0.3 | ||
- @orpc/contract@0.0.2 | ||
- @orpc/server@0.0.2 | ||
- @orpc/transformer@0.0.2 | ||
|
||
## 0.0.1 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`a461d01`](https://github.com/unnoq/orpc/commit/a461d01c5a154ad10d96b1841d26b57a0c8609fa)]: | ||
- @orpc/shared@0.0.2 | ||
- @orpc/contract@0.0.1 | ||
- @orpc/server@0.0.1 | ||
- @orpc/transformer@0.0.1 | ||
Stay updated with the latest features, fixes, and improvements! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.