Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: change release binary filenames #79

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
2 changes: 1 addition & 1 deletion docs/features/grpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading