From 6799d85d1abd4f064e2af626f1c25ce8adae06b3 Mon Sep 17 00:00:00 2001 From: Philip Liu <12836897+philipliu@users.noreply.github.com> Date: Mon, 19 Aug 2024 19:27:33 -0400 Subject: [PATCH] Fix package name in yarn install (#150) --- .github/workflows/npm_and_docker_publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/npm_and_docker_publish.yml b/.github/workflows/npm_and_docker_publish.yml index 423f89e..52b81c9 100644 --- a/.github/workflows/npm_and_docker_publish.yml +++ b/.github/workflows/npm_and_docker_publish.yml @@ -35,7 +35,7 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Install Latest npm Package - run: yarn add anchor-tests@latest -W + run: yarn add @stellar/anchor-tests@latest -W - name: Build and push Docker images uses: docker/build-push-action@v4.0.0