File tree 3 files changed +16
-3
lines changed
3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 26
26
uses : actions/setup-node@v2
27
27
with :
28
28
node-version : ' 17.2'
29
+ - name : " Setup npm"
30
+ run : |
31
+ npm set "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}"
29
32
- name : Install dependencies
30
33
run : |
31
34
pip install --upgrade pip
Original file line number Diff line number Diff line change 12
12
- name : " Checkout"
13
13
uses : actions/checkout@v2
14
14
with :
15
+ token : ${{ secrets.GH_PUBLISH_TOKEN }}
15
16
fetch-depth : 0
16
17
17
18
- name : " Use NodeJS 14"
@@ -33,10 +34,11 @@ jobs:
33
34
run : npm run lerna-test
34
35
- name : " Version and publish"
35
36
env :
36
- GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
37
+ GH_TOKEN : ${{ secrets.GH_PUBLISH_TOKEN }}
37
38
run : |
38
- git config user.name "${{ github.actor }}"
39
- git config user.email "${{ github.actor}}@users.noreply.github.com"
39
+ git config --global user.name 'github-actions[bot]'
40
+ git config --global user.email 'github-actions[bot]@users.noreply.github.com'
41
+ git remote set-url origin https://x-access-token:${GH_TOKEN}@github.com/$GITHUB_REPOSITORY
40
42
41
43
if [ ${{ github.base_ref }} = main ]; then
42
44
npx lerna version --conventional-commits --create-release github --yes
Original file line number Diff line number Diff line change
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [ Conventional Commits] ( https://conventionalcommits.org ) for commit guidelines.
5
+
6
+ # [ 0.1.0-beta.10] ( https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v0.1.0-beta.9...v0.1.0-beta.10 ) (2021-12-17)
7
+
8
+ ** Note:** Version bump only for package @aws-lambda-powertools/commons
You can’t perform that action at this time.
0 commit comments