Skip to content

Commit 944d392

Browse files
Change value of the package name's suffix
Previously `-` was not supported as a value of `environment` property in the `npm-version-bump` action. Now action supports hyphens and we can change the suffix to more readible format.
1 parent 0e4e226 commit 944d392

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/contracts.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
# We intend to use `workflow dispatch` in two different situations/paths:
1111
# 1. If a workflow will be manually dspatched from branch named
1212
# `dapp-development`, workflow will deploy the contracts on the selected
13-
# testnet and publish them to NPM registry with `dappdev<environment>`
13+
# testnet and publish them to NPM registry with `dapp-dev-<environment>`
1414
# suffix and `dapp-development-<environment>` tag. Such packages are meant
1515
# to be used locally by the team developing Threshold Token dApp and may
1616
# contain contracts that have different values from the ones used on
@@ -250,7 +250,7 @@ jobs:
250250
id: npm-version-bump
251251
uses: keep-network/npm-version-bump@v2
252252
with:
253-
environment: dappdev${{ github.event.inputs.environment }}
253+
environment: dapp-dev-${{ github.event.inputs.environment }}
254254
branch: ${{ github.ref }}
255255
commit: ${{ github.sha }}
256256

0 commit comments

Comments
 (0)