Skip to content

Commit 1e2b35d

Browse files
ci: added delay (#33)
Signed-off-by: Mario Francia <mario@io.builders>
1 parent baf2530 commit 1e2b35d

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

.github/workflows/all.publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- published
66
jobs:
77
publish:
8-
name: docker
8+
name: publishing packages
99
runs-on: ubuntu-latest
1010

1111
permissions:
@@ -26,7 +26,6 @@ jobs:
2626
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
2727
cp .npmrc ./contracts/.npmrc
2828
cp .npmrc ./sdk/.npmrc
29-
3029
3130
- name: Change references
3231
run: ./changeProyectsReferencesToRepo.sh
@@ -39,6 +38,9 @@ jobs:
3938
env:
4039
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4140

41+
- name: Wait for contracts package availability
42+
run: sleep 10
43+
4244
- name: Install sdk dependencies
4345
run: npm run install:sdk
4446

contracts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/asset-tokenization-contracts",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"main": "./build/typechain-types/index.js",
55
"module": "./build/typechain-types/index.js",
66
"files": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hedera-asset-tokenization",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "asset tokenization",
55
"scripts": {
66
"install:all": "node install.js && npm run prepare",

sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/asset-tokenization-sdk",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Testing to MASTER",
55
"main": "./build/cjs/src/index.js",
66
"module": "./build/esm/src/index.js",

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/asset-tokenization-dapp",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"scripts": {
55
"dev": "vite",
66
"build": "tsc && vite build",

0 commit comments

Comments
 (0)