Skip to content

Commit 25b9b73

Browse files
authored
fix: build before publish (#84)
* fix: package services npm * fix: build before publishing in the workflow * chore: release
1 parent edbe590 commit 25b9b73

File tree

19 files changed

+82
-9
lines changed

19 files changed

+82
-9
lines changed

.changeset/cruel-eels-rule.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
"@gitcoin/services": patch
3+
"@gitcoin/config": patch
4+
"@gitcoin/themes": patch
5+
"@gitcoin/types": patch
6+
"@gitcoin/utils": patch
7+
"@gitcoin/checker": patch
8+
"@gitcoin/ui": patch
9+
---
10+
11+
fix: build before publishing

.changeset/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"@gitcoin/utils": "0.0.0-beta.41"
1313
},
1414
"changesets": [
15+
"cruel-eels-rule",
1516
"rare-rats-worry",
1617
"ten-islands-jump"
1718
]

.github/workflows/release-next.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,14 @@ jobs:
3232
- name: Install Dependencies
3333
run: pnpm i
3434

35+
- name: Build Packages
36+
run: pnpm build
37+
3538
- name: Create Next Release Pull Request or Publish to npm
3639
id: changesets
3740
uses: changesets/action@v1
3841
with:
39-
publish: pnpm release
42+
publish: pnpm release:ci
4043
version: pnpm version-packages
4144
commit: "ci: new next release"
4245
title: "ci: new next release candidate"

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,14 @@ jobs:
3232
- name: Install Dependencies
3333
run: pnpm i
3434

35+
- name: Build Packages
36+
run: pnpm build
37+
3538
- name: Create Release Pull Request or Publish to npm
3639
id: changesets
3740
uses: changesets/action@v1
3841
with:
39-
publish: pnpm release
42+
publish: pnpm release:ci
4043
version: pnpm version-packages
4144
commit: "ci: new release"
4245
title: "ci: new release candidate"

apps/checker/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @gitcoin/checker
22

3+
## 1.0.0-next.2
4+
5+
### Patch Changes
6+
7+
- fix: build before publishing
8+
9+
- Updated dependencies []:
10+
- @gitcoin/services@1.0.0-next.2
11+
- @gitcoin/utils@1.0.0-next.2
12+
- @gitcoin/ui@1.0.0-next.2
13+
314
## 1.0.0-next.1
415

516
### Patch Changes

apps/checker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitcoin/checker",
3-
"version": "1.0.0-next.1",
3+
"version": "1.0.0-next.2",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/gitcoinco/core",

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"changeset:pre-exit": "changeset pre exit",
1818
"version-packages": "changeset version",
1919
"release": "turbo build --filter=@repo/*^... && changeset publish",
20+
"release:ci": "changeset publish",
2021
"prepare": "husky",
2122
"lint-staged": "turbo lint-staged"
2223
},

packages/config/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @gitcoin/config
22

3+
## 1.0.0-next.2
4+
5+
### Patch Changes
6+
7+
- fix: build before publishing
8+
39
## 1.0.0-next.1
410

511
## 1.0.0-next.0

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitcoin/config",
3-
"version": "1.0.0-next.1",
3+
"version": "1.0.0-next.2",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/gitcoinco/core",

packages/services/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @gitcoin/services
22

3+
## 1.0.0-next.2
4+
5+
### Patch Changes
6+
7+
- fix: build before publishing
8+
39
## 1.0.0-next.1
410

511
## 1.0.0-next.0

0 commit comments

Comments
 (0)