Skip to content

Commit e125de7

Browse files
authored
chore: make releases work (#30)
1 parent 21b6578 commit e125de7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
with:
2020
cache: "npm"
2121
node-version-file: ".nvmrc"
22-
- uses: nrwl/nx-set-shas@v3
2322
- run: npm ci
2423
- name: Build
2524
run: npx nx run-many --target=build --parallel=3
@@ -30,7 +29,8 @@ jobs:
3029
npx lerna version --no-private --conventional-commits --yes
3130
env:
3231
GH_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
33-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
32+
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
33+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
3434
- name: Set Current Version
3535
run: |
3636
CURRENT_VERSION=$(node -p 'require("./lerna.json").version')

commitlint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = {extends: ['@commitlint/config-conventional']}
1+
module.exports = { extends: ["@commitlint/config-conventional"] };

0 commit comments

Comments
 (0)