Fixing integration tests for EKS add-on with the change to separate C… #67
This file contains hidden or 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
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Build and Upload Integration Test Artifact | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
BuildAndUpload: | |
uses: ./.github/workflows/build-and-upload-release.yml | |
secrets: inherit | |
permissions: | |
id-token: write | |
contents: read | |
with: | |
release: false | |
tag: 'integration-test' |