Skip to content

Commit

Permalink
chore: fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
andrepolischuk committed Sep 20, 2023
1 parent 29755b0 commit dff1b78
Show file tree
Hide file tree
Showing 11 changed files with 42 additions and 9 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- master
tags-ignore:
- v*

jobs:
release:
Expand All @@ -14,8 +16,19 @@ jobs:
uses: actions/setup-node@v3
with:
cache: yarn
node-version: '16.x'
node-version: '18.x'
- run: yarn
- run: |
git config --global user.email $BOT_EMAIL
git config --global user.name rambler-ui-bot
env:
BOT_EMAIL: ${{ secrets.BOT_EMAIL }}
- run: |
echo "@rambler-tech:registry=https://registry.npmjs.org/" > .npmrc
echo "registry=https://registry.npmjs.org/" >> .npmrc
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/setup-node@v3
with:
cache: yarn
node-version: '16.x'
node-version: '18.x'
- run: yarn
- run: yarn lint

Expand All @@ -35,7 +35,7 @@ jobs:
uses: actions/setup-node@v3
with:
cache: yarn
node-version: '16.x'
node-version: '18.x'
- run: yarn
- uses: wagoid/commitlint-github-action@v3
env:
Expand Down
1 change: 0 additions & 1 deletion .yarnrc

This file was deleted.

2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"publish": {
"yes": true,
"registry": "https://registry.npmjs.org/"
"verifyAccess": false
}
}
}
3 changes: 3 additions & 0 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"main": "index.js",
"license": "MIT",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/core": "^7.22.20",
"@babel/eslint-parser": "^7.22.15",
Expand Down
5 changes: 4 additions & 1 deletion packages/licenselint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@
"version": "0.0.0",
"main": "index.js",
"license": "MIT",
"sideEffects": false
"sideEffects": false,
"publishConfig": {
"access": "public"
}
}
5 changes: 4 additions & 1 deletion packages/prettier-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@
"version": "0.0.0",
"main": "index.js",
"license": "MIT",
"sideEffects": false
"sideEffects": false,
"publishConfig": {
"access": "public"
}
}
3 changes: 3 additions & 0 deletions packages/semantic-release-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"main": "index.js",
"license": "MIT",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1"
Expand Down
3 changes: 3 additions & 0 deletions packages/stylelint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"main": "index.js",
"license": "MIT",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"stylelint-a11y": "^1.2.3",
"stylelint-config-prettier": "^9.0.3",
Expand Down
5 changes: 4 additions & 1 deletion packages/ts-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@
"version": "0.0.0",
"main": "base.json",
"license": "MIT",
"sideEffects": false
"sideEffects": false,
"publishConfig": {
"access": "public"
}
}
5 changes: 4 additions & 1 deletion packages/typedoc-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@
"version": "0.0.0",
"main": "index.js",
"license": "MIT",
"sideEffects": false
"sideEffects": false,
"publishConfig": {
"access": "public"
}
}

0 comments on commit dff1b78

Please sign in to comment.