From 91d60c5f64ba2dde7f0cf9128613496aecf62f28 Mon Sep 17 00:00:00 2001 From: Frank Natividad Date: Thu, 17 Oct 2024 11:00:55 -0700 Subject: [PATCH 1/2] docs: add release guidance --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index b0cd0470..61a424fe 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,7 @@ is expected to be used by Storage library maintainers. - [Delete a Retry Test resource](#delete-a-retry-test-resource) - [Causing a failure using x-retry-test-id header](#causing-a-failure-using-x-retry-test-id-header) - [Forced Failures Supported](#forced-failures-supported) + - [Releases for Tests](#releases-for-tests) ## Issue Policy @@ -252,3 +253,15 @@ curl -H "x-retry-test-id: 1d05c20627844214a9ff7cbcf696317d" "http://localhost:91 | return-broken-stream-after-YK | [HTTP] Testbench will fail after YKiB of downloaded data
[GRPC] Testbench will fail with `UNAVAILABLE` after YKiB of downloaded data | return-reset-connection | [HTTP] Testbench will fail with a reset connection
[GRPC] Testbench will fail the RPC with `UNAVAILABLE` | stall-for-Ts-after-YK | [HTTP] Testbench will stall for T second after reading YKiB of downloaded data, e.g. stall-for-10s-after-12K stalls after reading 12KiB of data
[GRPC] Not supported + +## Releases For Tests + +The repository currently uses [Github Tags](https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository#creating-a-release) + +Steps: +1. Go to https://github.com/googleapis/storage-testbench/releases/new +1. Create a new tag v0.x.x +1. Title "v0.x.x" +1. Click Generate release notes +1. Make sure "Set as the latest release" is checked +1. Click "Publish Release" to release From 23be5e5f5f2225bee8579faa4cc0b06594cd9d4d Mon Sep 17 00:00:00 2001 From: Frank Natividad Date: Thu, 17 Oct 2024 11:06:08 -0700 Subject: [PATCH 2/2] address feedback --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 61a424fe..f498466a 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ is expected to be used by Storage library maintainers. - [Delete a Retry Test resource](#delete-a-retry-test-resource) - [Causing a failure using x-retry-test-id header](#causing-a-failure-using-x-retry-test-id-header) - [Forced Failures Supported](#forced-failures-supported) - - [Releases for Tests](#releases-for-tests) + - [Releasing the testbench](#releasing-the-testbench) ## Issue Policy @@ -254,7 +254,7 @@ curl -H "x-retry-test-id: 1d05c20627844214a9ff7cbcf696317d" "http://localhost:91 | return-reset-connection | [HTTP] Testbench will fail with a reset connection
[GRPC] Testbench will fail the RPC with `UNAVAILABLE` | stall-for-Ts-after-YK | [HTTP] Testbench will stall for T second after reading YKiB of downloaded data, e.g. stall-for-10s-after-12K stalls after reading 12KiB of data
[GRPC] Not supported -## Releases For Tests +## Releasing the testbench The repository currently uses [Github Tags](https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository#creating-a-release)