Skip to content

Commit b807f6f

Browse files
committed
fix: fix CI builds
1 parent af36611 commit b807f6f

File tree

5 files changed

+8
-32
lines changed

5 files changed

+8
-32
lines changed

.github/workflows/farcaster-js.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ on:
77
branches:
88
- main
99

10-
env:
11-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
12-
1310
jobs:
1411
farcaster:
1512
runs-on: ubuntu-latest
@@ -40,3 +37,9 @@ jobs:
4037

4138
- name: Test
4239
run: yarn test
40+
41+
- name: Release
42+
env:
43+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
45+
run: npx semantic-release

.github/workflows/release.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.
File renamed without changes.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"spell:check": "cspell \"{README.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,.github/*.md,src/**/*.ts,tests/**/*.ts}\"",
3636
"cz": "cz",
3737
"semantic-release": "semantic-release",
38-
"docs": "yarn md-magic --path './README.template.md' && yarn typedoc",
38+
"docs": "yarn md-magic --path './README.md' && yarn typedoc",
3939
"prepare": "husky install"
4040
},
4141
"devDependencies": {

typedoc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"exclude": "./src/contracts/**/*.ts",
55
"gitRevision": "main",
66
"theme": "markdown",
7-
"readme": "./README.template.md"
7+
"readme": "./README.md"
88
}

0 commit comments

Comments
 (0)