feat(s2n-quic-events): Adds events for s2n-quic-dc #3067
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
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/setup-buildx-action@v3.6.1 | |
- 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/login-action@v3.3.0 | |
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/login-action@v3.3.0 | |
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/') }} |