From 66e4465360875e44b3f91dade9d12970a05436f1 Mon Sep 17 00:00:00 2001 From: Andres Martin Aiello <50411235+andresaiello@users.noreply.github.com> Date: Mon, 8 Jan 2024 15:03:49 -0300 Subject: [PATCH] feat: npm pkg app contract addresses (#142) * Npm Pkg for app contract addresses * update publish to yarn 3 --- .github/workflows/publish-npm.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-npm.yaml b/.github/workflows/publish-npm.yaml index 51ae33c4..79d143f9 100644 --- a/.github/workflows/publish-npm.yaml +++ b/.github/workflows/publish-npm.yaml @@ -36,7 +36,7 @@ jobs: - name: Publish to NPM zeta app contracts working-directory: packages/zeta-app-contracts - run: yarn publish --new-version ${GITHUB_REF#refs/tags/v} --tag ${{ steps.determine-npm-tag.outputs.NPM_TAG }} --no-git-tag-version + run: yarn npm publish --tag ${{ steps.determine-npm-tag-zeta-app-contracts.outputs.NPM_TAG }} env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} GITHUB_REF: ${{ github.ref }} @@ -56,7 +56,7 @@ jobs: - name: Publish to NPM zevm app contracts working-directory: packages/zevm-app-contracts - run: yarn publish --new-version ${GITHUB_REF#refs/tags/v} --tag ${{ steps.determine-npm-tag.outputs.NPM_TAG }} --no-git-tag-version + run: yarn npm publish --tag ${{ steps.determine-npm-tag-zevm-app-contracts.outputs.NPM_TAG }} env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} GITHUB_REF: ${{ github.ref }}