Skip to content

Commit

Permalink
More workflow fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
san-est committed Jun 15, 2024
1 parent 830b0bb commit 93f77bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-hardhat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:

- name: Running image container
run: |
echo "Workspace path: ${{ github.workspace }}/hardhat"
echo "Workspace path: /workspace/hardhat"
docker run -d --name devnet -p 8545:8545 \
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
- name: Copy over hardhat files to running container
run: |
docker exec devnet mkdir -p /workspace/hardhat
docker exec devnet mkdir /workspace/hardhat
docker cp ${{ github.workspace }}/hardhat devnet:/workspace/hardhat
docker exec devnet ls /workspace/hardhat
docker exec devnet ls -l /workspace/hardhat
Expand Down

0 comments on commit 93f77bd

Please sign in to comment.