v1.16.4 #1275
Workflow file for this run
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: VPC CNI Release | |
on: | |
release: | |
types: [published] | |
permissions: | |
contents: read | |
env: | |
GITHUB_USERNAME: ${{ secrets.EKS_BOT_GITHUB_USERNAME }} | |
GITHUB_TOKEN: ${{ secrets.EKS_BOT_GITHUB_TOKEN }} | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout latest commit in the PR | |
uses: actions/checkout@v3 | |
with: | |
ref: "refs/tags/${{ github.event.release.tag_name }}" | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.21" | |
- name: Generate CNI YAML | |
run: make generate-cni-yaml | |
- name: Create eks-charts PR | |
run: make ekscharts-sync-release | |
- name: Create sample manifests PR | |
run: make config-folder-sync |