From 36087bef0ee8416c5cef34bc92e18b7e486499c4 Mon Sep 17 00:00:00 2001 From: Kostiantyn Smyrnov Date: Mon, 15 May 2023 14:33:08 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Try=20to=20fix=20github?= =?UTF-8?q?=20workflow=20error:=20No=20files=20passed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b4b9e2d..b75983c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,7 +2,7 @@ name: Release on: push: branches: - - master + - main - beta jobs: release: diff --git a/package.json b/package.json index f2745dc..efd84e9 100644 --- a/package.json +++ b/package.json @@ -97,7 +97,7 @@ }, "scripts": { "build:contracts": "hardhat compile", - "build:src": "rm -rf ./lib && typechain --target=ethers-v6 --out-dir typechainV6 artifacts/**/Config.json artifacts/**/EntitiesRegistry.json artifacts/**/Market.json && tsc -p ./tsconfig.build.json", + "build:src": "rm -rf ./lib && typechain --target=ethers-v6 --out-dir typechainV6 ./artifacts/contracts/Config.sol/Config.json ./artifacts/contracts/EntitiesRegistry.sol/EntitiesRegistry.json ./artifacts/contracts/Market.sol/Market.json && tsc -p ./tsconfig.build.json", "test:contracts": "hardhat test", "test:src": "mocha -t 60000 --extension spec.ts test/src", "lint": "solhint . && eslint --ext .ts",