diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e415048..54467a3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -26,7 +26,12 @@ jobs: - name: Install dependencies run: pnpm install - - name: Publish to npm + - name: Publish to npm as alpha run: npm publish --tag alpha --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + + - name: Publish to npm as latest + run: npm publish --tag latest --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/package.json b/package.json index 0053487..868edea 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@debros/network", - "version": "0.0.12-alpha", + "version": "0.0.13-alpha", "description": "Debros network core functionality for IPFS, libp2p and OrbitDB", "type": "module", "main": "dist/index.js",