Skip to content

Commit

Permalink
GitHub Action Workflows - Publish tagged BSR repository (#17)
Browse files Browse the repository at this point in the history
* add push_bsr_repo step to release.yaml

* add release CHANGELOG entry
  • Loading branch information
alehechka authored Aug 2, 2022
1 parent 5a6312b commit 327847f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,19 @@ jobs:
RELEASE_VERSION=${{ github.ref_name }}
GO_PROTOBUF_RELEASE_VERSION=${{ steps.protobuf-version.outputs.version }}
GO_GRPC_RELEASE_VERSION=${{ steps.grpc-version.outputs.version }}
push_bsr_repo:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: bufbuild/buf-setup-action@v1

- name: Build Protobuf sources
run: buf build
working-directory: proto

- name: Push Repository
run: BUF_TOKEN="${{ secrets.BUF_BUILD_TOKEN }}" buf push --tag "${{ github.ref_name }}"
working-directory: proto/grpc-graphql-gateway
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

## UNRELEASED

## [v0.3.0](https://github.com/alehechka/grpc-graphql-gateway/releases/tag/v0.3.0)

- Resolve camelCase enum values ([#13](https://github.com/alehechka/grpc-graphql-gateway/pull/13))
- Remove field_camel and add field_proto CLI arg ([#14](https://github.com/alehechka/grpc-graphql-gateway/pull/14))
- Refactor getTagName function ([#16](https://github.com/alehechka/grpc-graphql-gateway/pull/16))
- GitHub Action Workflows - Publish tagged BSR repository ([#17](https://github.com/alehechka/grpc-graphql-gateway/pull/17))

## [v0.2.4](https://github.com/alehechka/grpc-graphql-gateway/releases/tag/v0.2.4)

Expand Down

0 comments on commit 327847f

Please sign in to comment.