Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
7b87152
add ethermint support
vincentysc Aug 9, 2023
87d3281
update pubkey
vincentysc Aug 11, 2023
338fd27
update pubkey encode
vincentysc Aug 11, 2023
660e53d
add cointype to signer accountData
vincentysc Aug 15, 2023
b08d686
update sign amino to support ethermint
vincentysc Aug 16, 2023
0adb6bc
update coin type
vincentysc Aug 17, 2023
6261234
update coin type
vincentysc Aug 17, 2023
7e96ca4
update hd path code
vincentysc Aug 17, 2023
b1e280d
fix cointype switch case
vincentysc Aug 17, 2023
11cc809
update test case
vincentysc Aug 17, 2023
9fb18fe
fix lint and format
vincentysc Aug 17, 2023
d2488b4
update test cases
vincentysc Aug 17, 2023
9da417b
update coin type
vincentysc Aug 17, 2023
2e69645
update coin type
vincentysc Aug 18, 2023
53766cd
update path checking
vincentysc Aug 18, 2023
f5311b7
make cointype as a param for signing
vincentysc Aug 23, 2023
1bf85bc
add release flow
CronosLabsDev Aug 25, 2023
cddf6fc
yarn update
CronosLabsDev Aug 25, 2023
82540d0
yarn update
CronosLabsDev Aug 25, 2023
845057b
Revert "yarn update"
CronosLabsDev Aug 25, 2023
79699eb
update release.yml
CronosLabsDev Aug 25, 2023
a350ea5
chore: release 0.31.0-alpha.8
CronosLabsDev Aug 25, 2023
9b5444f
update packahge.json publishConfig
CronosLabsDev Aug 25, 2023
2feca97
chore: release 0.31.0-alpha.9
CronosLabsDev Aug 25, 2023
dd73af6
update release.yml with new version of node
CronosLabsDev Aug 25, 2023
37b8970
change release.yml to use yarn publish-next
CronosLabsDev Aug 25, 2023
dbd8930
update .release-it.json
CronosLabsDev Aug 25, 2023
82b0020
update package.json to specific release-it flag in cli
CronosLabsDev Aug 25, 2023
479f7d2
update release.yml to specific release-it flag in cli
CronosLabsDev Aug 25, 2023
45ce002
Release 0.31.0-alpha.16
CronosLabsDev Aug 25, 2023
bd7665c
change release-it from v16 to v14
CronosLabsDev Aug 25, 2023
7c6bbbd
Release 0.31.0-alpha.17
CronosLabsDev Aug 25, 2023
3f7bdc6
remove private flag of package.json
CronosLabsDev Aug 25, 2023
56261b4
Release 0.31.0-alpha.18
CronosLabsDev Aug 25, 2023
63a624b
upgrade to v0.32.1
vincentysc Jan 7, 2025
16f7bc1
update cosmjs lib
vincentysc May 21, 2025
0754b98
Merge branch 'main' into upgrade/v0-32-1
vincentysc May 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
53 changes: 53 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Publish package

on:
release:
types: [published]

jobs:
release:
name: Publish and release package
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v2
with:
ref: 'main'

- uses: actions/setup-node@v1
with:
node-version: 16.20.0
registry-url: https://npm.pkg.github.com/
scope: '@cronos-labs'

- name: Setup git config
run: |
git config user.name "CronosLabsDev"
git config user.email "dev@cronoslabs.org"
YARN_CHECKSUM_BEHAVIOR=update yarn


- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: Cache node modules
uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-

- run: YARN_CHECKSUM_BEHAVIOR=update yarn install --frozen-lockfile

- run: yarn build

- run: git checkout .yarn

- run: npx release-it --npm.skipChecks --no-git.tag --npm.publish --git.push --ci -i ${{ github.event.release.tag_name }}
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading