fix: store did key addresses in the default SS58 format used by the k… #143
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
name: Semantic Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.14 | |
- name: Install dependencies | |
run: | | |
corepack enable | |
yarn | |
- name: Semantic release | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
run: npx semantic-release@18 |