updating controller to include APPMESH_RESOURCE_ARN env variable #910
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: AppMesh controller Release | |
on: [push, pull_request, workflow_dispatch] | |
env: | |
DEFAULT_GO_VERSION: ^1.16 | |
GITHUB_USERNAME: ${{ secrets.EKS_BOT_GITHUB_USERNAME }} | |
GITHUB_TOKEN: ${{ secrets.EKS_BOT_GITHUB_TOKEN }} | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-22.04 | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ env.DEFAULT_GO_VERSION }} | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Create eks-charts PR | |
run: make ekscharts-sync-release |