Skip to content

Commit

Permalink
fix: change release binary filenames (#79)
Browse files Browse the repository at this point in the history
Signed-off-by: Philipp Plotnikov <philipp.plotnikov@icloud.com>
  • Loading branch information
Philipp-Plotnikov authored Sep 9, 2024
1 parent 2f36879 commit c878c63
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
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

0 comments on commit c878c63

Please sign in to comment.