Upgrade AWS CLI version to 2.15.14 #33
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: Docker | |
on: | |
pull_request: | |
push: | |
branches: main | |
env: | |
RELEASE_BRANCH: main | |
REGISTRY: ghcr.io | |
IMAGE_NAME: docker-alpine-aws-cli | |
PLATFORMS: "linux/amd64,linux/arm64" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
if: github.ref != 'refs/heads/main' | |
strategy: | |
matrix: | |
tag: | |
# To keep the number of builds low, we only keep the latest two versions of the AWS CLI | |
- 2.15.14-3.18 | |
- 2.15.14-3.17 | |
- 2.15.14-3.16 | |
- 2.15.0-3.18 | |
- 2.15.0-3.17 | |
- 2.15.0-3.16 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }} | |
tags: | | |
# set latest tag for main branch | |
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', env.RELEASE_BRANCH) }} | |
type=sha,format=long,prefix= | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Get variables | |
id: vars | |
run: | | |
echo "aws_cli_version=$(echo "${{ matrix.tag }}" | awk '{split($0,a,"-"); print a[1]}')" >> "$GITHUB_OUTPUT" | |
echo "alpine_version=$(echo "${{ matrix.tag }}" | awk '{split($0,a,"-"); print a[2]}')" >> "$GITHUB_OUTPUT" | |
- name: Build Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
load: true | |
push: false | |
context: . | |
build-args: | | |
AWS_CLI_VERSION=${{ steps.vars.outputs.aws_cli_version }} | |
ALPINE_VERSION=${{ steps.vars.outputs.alpine_version }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
deploy: | |
runs-on: ubuntu-latest | |
if: contains('["refs/heads/main", "refs/heads/master"]', github.ref) | |
strategy: | |
matrix: | |
tag: | |
# To keep the number of builds low, we only keep the latest two versions of the AWS CLI | |
- 2.15.14-3.18 | |
- 2.15.14-3.17 | |
- 2.15.14-3.16 | |
- 2.15.0-3.18 | |
- 2.15.0-3.17 | |
- 2.15.0-3.16 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }} | |
tags: | | |
# set latest tag for main branch | |
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', env.RELEASE_BRANCH) }} | |
type=sha,format=long,prefix= | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Get variables | |
id: vars | |
run: | | |
echo "aws_cli_version=$(echo "${{ matrix.tag }}" | awk '{split($0,a,"-"); print a[1]}')" >> "$GITHUB_OUTPUT" | |
echo "alpine_version=$(echo "${{ matrix.tag }}" | awk '{split($0,a,"-"); print a[2]}')" >> "$GITHUB_OUTPUT" | |
- name: Build Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
push: true | |
platforms: ${{ env.PLATFORMS }} | |
context: . | |
build-args: | | |
AWS_CLI_VERSION=${{ steps.vars.outputs.aws_cli_version }} | |
ALPINE_VERSION=${{ steps.vars.outputs.alpine_version }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |