From 5ea5d918610f0a2b6adc68c986419682c4cc6d3f Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Mon, 28 Nov 2022 15:23:29 +0100 Subject: [PATCH] ci: allow to deploy docs manually (#14042) --- .github/workflows/deploy-docs.yml | 1 + UPGRADING.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 9b7a7a1da1..b8a0891d50 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -2,6 +2,7 @@ name: Deploy docs # This job builds and deploys documenation to github pages. # It runs on every push to main with a change in the docs folder. on: + workflow_dispatch: push: branches: - main diff --git a/UPGRADING.md b/UPGRADING.md index 802cc8e80a..6b0a9fc68b 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -8,7 +8,7 @@ This guide provides instructions for upgrading to specific versions of Cosmos SD The SDK is in the process of removing all `gogoproto` annotations. -### Stringer +#### Stringer The `Stringer` implementation of some packages use `proto.CompactTextString` for _stringify_ a struct. Please [verify](https://github.com/cosmos/cosmos-sdk/pull/13850#issuecomment-1328889651) the usage of the `.String()` method in your application. An chain should not rely on it for any state-machine related operation.