test: Add IPv6 testing for E2E for v1beta1 (#4890) #604
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: DocGenCI | |
on: | |
push: | |
branches: [main] | |
permissions: | |
id-token: write | |
jobs: | |
docgen-ci: | |
if: github.repository == 'aws/karpenter' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/install-deps | |
- uses: aws-actions/[email protected] | |
with: | |
role-to-assume: 'arn:aws:iam::${{ vars.ECR_ACCOUNT_ID }}:role/${{ vars.ECR_SNAPSHOT_ROLE_NAME }}' | |
aws-region: ${{ vars.ECR_REGION }} | |
- run: make docgen | |
- run: make codegen | |
env: | |
ENABLE_GIT_PUSH: false |