diff --git a/.changeset/wild-feet-listen.md b/.changeset/wild-feet-listen.md new file mode 100644 index 0000000000000..91b6bf8a1a22b --- /dev/null +++ b/.changeset/wild-feet-listen.md @@ -0,0 +1,5 @@ +--- +'@eth-optimism/hardhat-node': patch +--- + +Fixes CI to properly release the hardhat-node diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6833c232d23ca..c10e3e4dc3e74 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -134,7 +134,7 @@ jobs: hardhat-node: name: Publish Hardhat Node ${{ needs.release.outputs.hardhat-node }} needs: release - if: needs.release.hardhat-node != '' + if: needs.release.outputs.hardhat-node != '' runs-on: ubuntu-latest steps: - name: Checkout diff --git a/.github/workflows/sync-tests.yml b/.github/workflows/sync-tests.yml index 8625780e70877..4f2264ccffaec 100644 --- a/.github/workflows/sync-tests.yml +++ b/.github/workflows/sync-tests.yml @@ -61,7 +61,7 @@ jobs: if: failure() uses: jwalton/gh-docker-logs@v1 with: - images: 'ethereumoptimism/hardhat,ethereumoptimism/deployer,ethereumoptimism/data-transport-layer,ethereumoptimism/l2geth,ethereumoptimism/message-relayer,ethereumoptimism/batch-submitter,ethereumoptimism/l2geth' + images: 'ethereumoptimism/hardhat-node,ethereumoptimism/deployer,ethereumoptimism/data-transport-layer,ethereumoptimism/l2geth,ethereumoptimism/message-relayer,ethereumoptimism/batch-submitter,ethereumoptimism/l2geth' dest: './logs' - name: Tar logs diff --git a/ops/docker-compose.yml b/ops/docker-compose.yml index 2c4f3bbf4f3d9..879e2c9c815a6 100644 --- a/ops/docker-compose.yml +++ b/ops/docker-compose.yml @@ -12,7 +12,7 @@ x-system-addr-env: &system-addr-env services: # this is a helper service used because there's no official hardhat image l1_chain: - image: ethereumoptimism/hardhat:${DOCKER_TAG_HARDHAT:-latest} + image: ethereumoptimism/hardhat-node:${DOCKER_TAG_HARDHAT:-latest} build: context: ./docker/hardhat dockerfile: Dockerfile diff --git a/ops/scripts/build-ci.sh b/ops/scripts/build-ci.sh index 588789a22252f..3ad2105bac79d 100755 --- a/ops/scripts/build-ci.sh +++ b/ops/scripts/build-ci.sh @@ -16,7 +16,7 @@ function build() { mkdir -p /tmp/.buildx-cache-new build l2geth "ethereumoptimism/l2geth:latest" "./l2geth/Dockerfile" . -build l1chain "ethereumoptimism/hardhat:latest" "./ops/docker/hardhat/Dockerfile" ./ops/docker/hardhat +build l1chain "ethereumoptimism/hardhat-node:latest" "./ops/docker/hardhat/Dockerfile" ./ops/docker/hardhat wait