Skip to content

Commit e5c72b1

Browse files
committed
Fix some stuff
1 parent 599ed8f commit e5c72b1

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@ jobs:
3030
run: curl -L https://unpkg.com/@pnpm/self-installer | node
3131

3232
- name: Install Dependencies
33-
run: pnpm i --frozen-lockfile=false
33+
run: pnpm i
3434

3535
- name: "Create Pull Request or Publish to npm"
3636
uses: changesets/action@master
3737
with:
38-
publish: yarn release
38+
publish: pnpm run release
39+
version: npm run version
3940
env:
4041
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4142
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@changesets/cli": "^2.6.5",
1515
"@manypkg/cli": "0.11.0",
1616
"@preconstruct/cli": "^1.1.12",
17-
"@ts-gql/eslint-plugin": "^0.0.0",
17+
"@ts-gql/eslint-plugin": "*",
1818
"@types/jest": "^25.2.1",
1919
"@typescript-eslint/eslint-plugin": "^2.29.0",
2020
"@typescript-eslint/parser": "^2.29.0",
@@ -30,7 +30,8 @@
3030
"scripts": {
3131
"postinstall": "manypkg check && preconstruct dev",
3232
"start": "cd test-app && pnpx next",
33-
"release": "preconstruct build && changeset publish"
33+
"release": "preconstruct build && changeset publish",
34+
"version": "changeset version && pnpm i --frozen-lockfile=false"
3435
},
3536
"preconstruct": {
3637
"packages": [

pnpm-lock.yaml

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)