From c878c63a41417371fb15cd94c06951850072ec4f Mon Sep 17 00:00:00 2001 From: Philipp Plotnikov Date: Mon, 9 Sep 2024 18:07:48 +0500 Subject: [PATCH] fix: change release binary filenames (#79) Signed-off-by: Philipp Plotnikov --- .github/workflows/release.yaml | 30 +++++++++++++++--------------- docs/features/grpc.md | 2 +- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4c74222..65de3eb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -99,57 +99,57 @@ jobs: prerelease: ${{ env.IS_PRE_RELEASE }} body_path: RELEASE_NOTES.md - - name: Gateway-api-plugin-linux-amd64 binary uploading to release assets + - name: Gatewayapi-plugin-linux-amd64 binary uploading to release assets uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./dist/gateway-api-plugin-linux-amd64 - asset_name: gateway-api-plugin-linux-amd64 + asset_path: ./dist/gatewayapi-plugin-linux-amd64 + asset_name: gatewayapi-plugin-linux-amd64 asset_content_type: application/octet-stream if: ${{ env.IS_DRY_RUN != 'true' }} - - name: Gateway-api-plugin-linux-arm64 binary uploading to release assets + - name: Gatewayapi-plugin-linux-arm64 binary uploading to release assets uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./dist/gateway-api-plugin-linux-arm64 - asset_name: gateway-api-plugin-linux-arm64 + asset_path: ./dist/gatewayapi-plugin-linux-arm64 + asset_name: gatewayapi-plugin-linux-arm64 asset_content_type: application/octet-stream if: ${{ env.IS_DRY_RUN != 'true' }} - - name: Gateway-api-plugin-darwin-amd64 binary uploading to release assets + - name: Gatewayapi-plugin-darwin-amd64 binary uploading to release assets uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./dist/gateway-api-plugin-darwin-amd64 - asset_name: gateway-api-plugin-darwin-amd64 + asset_path: ./dist/gatewayapi-plugin-darwin-amd64 + asset_name: gatewayapi-plugin-darwin-amd64 asset_content_type: application/octet-stream if: ${{ env.IS_DRY_RUN != 'true' }} - - name: Gateway-api-plugin-darwin-arm64 binary uploading to release assets + - name: Gatewayapi-plugin-darwin-arm64 binary uploading to release assets uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./dist/gateway-api-plugin-darwin-arm64 - asset_name: gateway-api-plugin-darwin-arm64 + asset_path: ./dist/gatewayapi-plugin-darwin-arm64 + asset_name: gatewayapi-plugin-darwin-arm64 asset_content_type: application/octet-stream if: ${{ env.IS_DRY_RUN != 'true' }} - - name: Gateway-api-plugin-windows-amd64 binary uploading to release assets + - name: Gatewayapi-plugin-windows-amd64 binary uploading to release assets uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./dist/gateway-api-plugin-windows-amd64.exe - asset_name: gateway-api-plugin-windows-amd64.exe + asset_path: ./dist/gatewayapi-plugin-windows-amd64.exe + asset_name: gatewayapi-plugin-windows-amd64.exe asset_content_type: application/octet-stream if: ${{ env.IS_DRY_RUN != 'true' }} diff --git a/docs/features/grpc.md b/docs/features/grpc.md index d330ff1..2b17dc0 100644 --- a/docs/features/grpc.md +++ b/docs/features/grpc.md @@ -9,7 +9,7 @@ To use GRPCRoute: 5. Create stable and canary services 6. Create GRPCRoute resource according to the GatewayAPI and your traffic provider documentation ```yaml -apiVersion: gateway.networking.k8s.io/v1alpha2 +apiVersion: gateway.networking.k8s.io/v1 kind: GRPCRoute metadata: name: first-grpcroute