mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Update build-hardhat-project.yaml
This commit is contained in:
parent
0db3f29547
commit
973b43858b
1 changed files with 11 additions and 1 deletions
12
.github/workflows/build-hardhat-project.yaml
vendored
12
.github/workflows/build-hardhat-project.yaml
vendored
|
|
@ -9,7 +9,12 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Log in to Docker Hub
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN}}
|
||||||
- name: Set up Node.js
|
- name: Set up Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
|
|
@ -34,4 +39,9 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cd hardhat
|
cd hardhat
|
||||||
npx hardhat test --network localhost
|
npx hardhat test --network localhost
|
||||||
|
|
||||||
|
- name: Create devnet geth image and push to Dockerhub
|
||||||
|
run: |
|
||||||
|
./create_image.sh
|
||||||
|
docker push anglyuboslav/geth-smart-con
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue