Skip to content

Commit

Permalink
Merge branch 'main' into tm/add/network
Browse files Browse the repository at this point in the history
  • Loading branch information
arhtudormorar committed May 2, 2024
2 parents 8f0dbe7 + c9427ab commit 7a51cf3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish sdk-dapp
name: Publish sdk-dapp-core

on:
push:
Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:
run: yarn test

- name: Build project
run: yarn build
run: yarn compile

- name: Get package info
id: package
Expand All @@ -43,10 +43,10 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ steps.package.outputs.is-prerelease == 'true'}}
run: echo ${{ steps.package.outputs.is-prerelease}} && cd dist && npm publish --tag next
run: echo ${{ steps.package.outputs.is-prerelease}} && npm publish --tag next

- name: Publish to npmjs
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ steps.package.outputs.is-prerelease == 'false' }}
run: cd dist && npm publish
run: npm publish

0 comments on commit 7a51cf3

Please sign in to comment.