build(deps): bump golang from 1.20.6 to 1.20.7 in /sidecar #278
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: Dev builds | |
on: | |
push: | |
branches: | |
- main | |
- 'release-v[0-9]+.[0-9]+' | |
env: | |
SIDECAR_IMAGE: "ghcr.io/sumologic/tailing-sidecar" | |
OPERATOR_IMAGE: "ghcr.io/sumologic/tailing-sidecar-operator" | |
ECR_URL: public.ecr.aws/sumologic | |
SIDECAR_IMAGE_ECR: "public.ecr.aws/sumologic/tailing-sidecar-dev" | |
OPERATOR_IMAGE_ECR: "public.ecr.aws/sumologic/tailing-sidecar-operator-dev" | |
LATEST_TAG: "main" | |
jobs: | |
build-sidecar: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Extract tag | |
id: extract_tag | |
run: echo "tag=$(echo $(git describe --tags --always))" >> $GITHUB_OUTPUT | |
- name: Print container tag | |
run: echo "Running dev build for ${{ steps.extract_tag.outputs.tag }}" | |
- name: Set up QEMU | |
uses: docker/[email protected] | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Login to GitHub Container Registry | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: USERNAME | |
password: ${{ secrets.CR_PAT }} | |
- name: Build and push tailing sidecar multiplatform image | |
run: make build-push-multiplatform TAG=${{ env.SIDECAR_IMAGE }}:${{ steps.extract_tag.outputs.tag }} | |
working-directory: ./sidecar | |
- name: Push tailing sidecar image with latest tag | |
run: make build-push-multiplatform TAG=${{ env.SIDECAR_IMAGE }}:${{ env.LATEST_TAG }} | |
working-directory: ./sidecar | |
- name: Log in to AWS Public ECR to publish tailing sidecar image | |
run: make login-ecr | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID_TAILING_SIDECAR_DEV }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY_TAILING_SIDECAR_DEV }} | |
- name: Build and push to ECR tailing sidecar multiplatform image | |
run: make build-push-multiplatform TAG=${{ env.SIDECAR_IMAGE_ECR }}:${{ steps.extract_tag.outputs.tag }} | |
working-directory: ./sidecar | |
- name: Push tailing sidecar image with latest tag to ECR | |
run: make build-push-multiplatform TAG=${{ env.SIDECAR_IMAGE_ECR }}:${{ env.LATEST_TAG }} | |
working-directory: ./sidecar | |
build-operator: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: Extract tag | |
id: extract_tag | |
run: echo "tag=$(echo $(git describe --tags --always))" >> $GITHUB_OUTPUT | |
- name: Print container tag | |
run: echo "Running dev build for ${{ steps.extract_tag.outputs.tag }}" | |
- name: Set up QEMU | |
uses: docker/[email protected] | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Login to GitHub Container Registry | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: USERNAME | |
password: ${{ secrets.CR_PAT }} | |
- name: Build and push tailing sidecar operator multiplatform image | |
run: make build-push-multiplatform IMG=${{ env.OPERATOR_IMAGE }}:${{ steps.extract_tag.outputs.tag }} | |
working-directory: ./operator | |
- name: Push tailing sidecar operator image with latest tag | |
run: make build-push-multiplatform IMG=${{ env.OPERATOR_IMAGE }}:${{ env.LATEST_TAG }} | |
working-directory: ./operator | |
- name: Log in to AWS Public ECR to publish tailing sidecar operator image | |
run: make login-ecr | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID_TAILING_SIDECAR_OPERATOR_DEV }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY_TAILING_SIDECAR_OPERATOR_DEV }} | |
- name: Build and push to ECR tailing sidecar operator multiplatform image | |
run: make build-push-multiplatform IMG=${{ env.OPERATOR_IMAGE_ECR }}:${{ steps.extract_tag.outputs.tag }} | |
working-directory: ./operator | |
- name: Push tailing sidecar operator image with latest tag to ECR | |
run: make build-push-multiplatform IMG=${{ env.OPERATOR_IMAGE_ECR }}:${{ env.LATEST_TAG }} | |
working-directory: ./operator | |
push-helm-chart: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Push dev helm chart | |
run: make push-helm-chart |