mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
* chore(docs): remove token economy guide * refactor(context): update GatewayContext to use Querier interface * chore(database): update schema path * docs: Update READMEs for x/did, x/dwn, and x/svc with UCAN integration * chore(pkg): update database scope name * refactor(did): optimize GenesisState proto methods * refactor(svc): update Service proto to use repeated fields * refactor(api): rename MsgSpawn to MsgInitialize
25 lines
559 B
YAML
25 lines
559 B
YAML
name: Publish Assets on Release
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
permissions:
|
|
contents: write
|
|
issues: write
|
|
|
|
jobs:
|
|
buf_push:
|
|
name: Publish to buf.build/onsonr/sonr
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Run `git checkout`
|
|
- uses: actions/checkout@v4
|
|
# Install the `buf` CLI
|
|
- uses: bufbuild/buf-setup-action@v1
|
|
# Push only the Input in `proto` to the BSR
|
|
- uses: bufbuild/buf-push-action@v1
|
|
continue-on-error: true
|
|
with:
|
|
input: proto
|
|
buf_token: ${{ secrets.BUF_TOKEN }}
|