feat(s2n-quic-dc): import 10/17/24 (#2351) #3166
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
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "v*.*.*" | |
pull_request: | |
branches: | |
- main | |
release: | |
types: [published] | |
name: release | |
jobs: | |
qns: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Compute tags | |
id: tags | |
run: | | |
ECR_IMAGE=public.ecr.aws/s2n/s2n-quic-qns | |
GHCR_IMAGE=ghcr.io/aws/s2n-quic/s2n-quic-qns | |
VERSION=main | |
if [[ $GITHUB_REF == refs/tags/* ]]; then | |
VERSION=${GITHUB_REF#refs/tags/v} | |
fi | |
TAGS="${ECR_IMAGE}:${VERSION},${GHCR_IMAGE}:${VERSION}" | |
# mark the latest on release | |
if [[ $VERSION =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then | |
TAGS="$TAGS,${ECR_IMAGE}:latest,${GHCR_IMAGE}:latest" | |
fi | |
echo "tags=${TAGS}" >> $GITHUB_OUTPUT | |
- name: Login to Amazon Elastic Container Registry Public | |
uses: docker/[email protected] | |
if: github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name | |
with: | |
registry: public.ecr.aws | |
username: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
password: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
- name: Login to GitHub Container Registry | |
uses: docker/[email protected] | |
if: github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push image | |
uses: docker/build-push-action@v6 | |
with: | |
tags: ${{ steps.tags.outputs.tags }} | |
file: quic/s2n-quic-qns/etc/Dockerfile | |
target: default | |
push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') }} |