-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33bc55f
commit da30978
Showing
4 changed files
with
3,439 additions
and
1,134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Publish Package to npmjs | ||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: pnpm/action-setup@v4 | ||
with: | ||
version: 9 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
cache: 'pnpm' | ||
node-version-file: '.nvmrc' | ||
|
||
- name: Install Dependencies | ||
run: pnpm install --frozen-lockfile | ||
|
||
- name: Publish to npm | ||
uses: changesets/action@v1 | ||
with: | ||
publish: pnpm publish | ||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
export const deployments = { | ||
"11155111": { | ||
"SciRegistry#SciRegistry": "0xaDD75Aecd98f0ADAD899729c88BfED4f8951c02A", | ||
"PublicListVerifier#PublicListVerifier": "0xd58d48185146343720df2C26FcD8D3C3734e22cf", | ||
"SciRegstrar#SciRegistrar": "0x83223D23E769CFE4b8bec8A32Eb148d0dbEc4dE5", | ||
"ProxyModule#SCI": "0xC29e83AfEe01bDccA7f69fE1DfD7A61954dCE4d4", | ||
"ProxyModule#TransparentUpgradeableProxy": "0x1694F779f28E3B3ff409d62c9d9d7042Ff406aEC", | ||
"ProxyModule#ProxyAdmin": "0x9007eD4FFa791BB63662D6E894A97e163e4C2A23", | ||
"SciModule#SCI": "0x1694F779f28E3B3ff409d62c9d9d7042Ff406aEC" | ||
} | ||
}; | ||
'11155111': { | ||
'SciRegistry#SciRegistry': '0xaDD75Aecd98f0ADAD899729c88BfED4f8951c02A', | ||
'PublicListVerifier#PublicListVerifier': '0xd58d48185146343720df2C26FcD8D3C3734e22cf', | ||
'SciRegstrar#SciRegistrar': '0x83223D23E769CFE4b8bec8A32Eb148d0dbEc4dE5', | ||
'ProxyModule#SCI': '0xC29e83AfEe01bDccA7f69fE1DfD7A61954dCE4d4', | ||
'ProxyModule#TransparentUpgradeableProxy': '0x1694F779f28E3B3ff409d62c9d9d7042Ff406aEC', | ||
'ProxyModule#ProxyAdmin': '0x9007eD4FFa791BB63662D6E894A97e163e4C2A23', | ||
'SciModule#SCI': '0x1694F779f28E3B3ff409d62c9d9d7042Ff406aEC', | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.