Skip to content

Commit 9862e43

Browse files
Merge pull request #1090 from Chia-Network/develop
Fix s3 deploy & fix formatting of git tag note
2 parents ca1d53d + 3febe3f commit 9862e43

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/auto-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
git add CHANGELOG.md
4747
sed -i -e '/<s>/d' CHANGELOG.md
4848
git commit -m "Updating changelog for $version"
49-
git tag $version -m "$changes"
49+
git tag $version -m "Release $version \n$changes"
5050
git push origin $version
5151
git push origin main
5252
fi

.github/workflows/deploy-s3.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,13 @@ jobs:
3131
- name: Checkout Code
3232
uses: actions/checkout@v3
3333

34-
- name: Setup Node 16.x
34+
- name: Setup Node 16.10
3535
uses: actions/setup-node@v3
3636
with:
37-
node-version: '16.x'
37+
node-version: '16.10'
38+
39+
- name: Install Husky
40+
run: npm install --save-dev husky
3841

3942
- name: npm install and build
4043
env:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cadt-ui",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"private": true,
55
"author": "Chia Network Inc. <[email protected]>",
66
"homepage": "./",

0 commit comments

Comments
 (0)