This repository was archived by the owner on Feb 2, 2025. It is now read-only.
Update amazon/aws-cli base image 2.23.2 / 2025-01-21 #72
Workflow file for this run
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
| name: Build Test Image | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| merge_group: | |
| types: | |
| - checks_requested | |
| jobs: | |
| build: | |
| name: Build Test Image | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: docker/[email protected] | |
| - run: | | |
| echo REPOSITORY="$( | |
| echo "${GITHUB_REPOSITORY}" | | |
| tr '[:upper:]' '[:lower:]' | | |
| sed 's/docker-//' | |
| )" >"${GITHUB_ENV}" | |
| - id: docker_build | |
| uses: docker/[email protected] | |
| with: | |
| context: . | |
| push: false | |
| load: true | |
| tags: ${{ env.REPOSITORY }}:test | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| - run: ./aws-cli-session-manager --version | |
| env: | |
| IMAGE: ${{ env.REPOSITORY }}:test |