Skip to content

Commit c878c63

Browse files
fix: change release binary filenames (#79)
Signed-off-by: Philipp Plotnikov <[email protected]>
1 parent 2f36879 commit c878c63

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

.github/workflows/release.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -99,57 +99,57 @@ jobs:
9999
prerelease: ${{ env.IS_PRE_RELEASE }}
100100
body_path: RELEASE_NOTES.md
101101

102-
- name: Gateway-api-plugin-linux-amd64 binary uploading to release assets
102+
- name: Gatewayapi-plugin-linux-amd64 binary uploading to release assets
103103
uses: actions/upload-release-asset@v1
104104
env:
105105
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
106106
with:
107107
upload_url: ${{ steps.create_release.outputs.upload_url }}
108-
asset_path: ./dist/gateway-api-plugin-linux-amd64
109-
asset_name: gateway-api-plugin-linux-amd64
108+
asset_path: ./dist/gatewayapi-plugin-linux-amd64
109+
asset_name: gatewayapi-plugin-linux-amd64
110110
asset_content_type: application/octet-stream
111111
if: ${{ env.IS_DRY_RUN != 'true' }}
112112

113-
- name: Gateway-api-plugin-linux-arm64 binary uploading to release assets
113+
- name: Gatewayapi-plugin-linux-arm64 binary uploading to release assets
114114
uses: actions/upload-release-asset@v1
115115
env:
116116
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
117117
with:
118118
upload_url: ${{ steps.create_release.outputs.upload_url }}
119-
asset_path: ./dist/gateway-api-plugin-linux-arm64
120-
asset_name: gateway-api-plugin-linux-arm64
119+
asset_path: ./dist/gatewayapi-plugin-linux-arm64
120+
asset_name: gatewayapi-plugin-linux-arm64
121121
asset_content_type: application/octet-stream
122122
if: ${{ env.IS_DRY_RUN != 'true' }}
123123

124-
- name: Gateway-api-plugin-darwin-amd64 binary uploading to release assets
124+
- name: Gatewayapi-plugin-darwin-amd64 binary uploading to release assets
125125
uses: actions/upload-release-asset@v1
126126
env:
127127
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
128128
with:
129129
upload_url: ${{ steps.create_release.outputs.upload_url }}
130-
asset_path: ./dist/gateway-api-plugin-darwin-amd64
131-
asset_name: gateway-api-plugin-darwin-amd64
130+
asset_path: ./dist/gatewayapi-plugin-darwin-amd64
131+
asset_name: gatewayapi-plugin-darwin-amd64
132132
asset_content_type: application/octet-stream
133133
if: ${{ env.IS_DRY_RUN != 'true' }}
134134

135-
- name: Gateway-api-plugin-darwin-arm64 binary uploading to release assets
135+
- name: Gatewayapi-plugin-darwin-arm64 binary uploading to release assets
136136
uses: actions/upload-release-asset@v1
137137
env:
138138
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
139139
with:
140140
upload_url: ${{ steps.create_release.outputs.upload_url }}
141-
asset_path: ./dist/gateway-api-plugin-darwin-arm64
142-
asset_name: gateway-api-plugin-darwin-arm64
141+
asset_path: ./dist/gatewayapi-plugin-darwin-arm64
142+
asset_name: gatewayapi-plugin-darwin-arm64
143143
asset_content_type: application/octet-stream
144144
if: ${{ env.IS_DRY_RUN != 'true' }}
145145

146-
- name: Gateway-api-plugin-windows-amd64 binary uploading to release assets
146+
- name: Gatewayapi-plugin-windows-amd64 binary uploading to release assets
147147
uses: actions/upload-release-asset@v1
148148
env:
149149
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
150150
with:
151151
upload_url: ${{ steps.create_release.outputs.upload_url }}
152-
asset_path: ./dist/gateway-api-plugin-windows-amd64.exe
153-
asset_name: gateway-api-plugin-windows-amd64.exe
152+
asset_path: ./dist/gatewayapi-plugin-windows-amd64.exe
153+
asset_name: gatewayapi-plugin-windows-amd64.exe
154154
asset_content_type: application/octet-stream
155155
if: ${{ env.IS_DRY_RUN != 'true' }}

docs/features/grpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To use GRPCRoute:
99
5. Create stable and canary services
1010
6. Create GRPCRoute resource according to the GatewayAPI and your traffic provider documentation
1111
```yaml
12-
apiVersion: gateway.networking.k8s.io/v1alpha2
12+
apiVersion: gateway.networking.k8s.io/v1
1313
kind: GRPCRoute
1414
metadata:
1515
name: first-grpcroute

0 commit comments

Comments
 (0)