Skip to content

Change label value to hash sum if > 63 chars #186

Change label value to hash sum if > 63 chars

Change label value to hash sum if > 63 chars #186

Workflow file for this run

name: Build Terraform Operator Container Image
on:
pull_request:
branches:
- master
push:
tags:
- '*'
jobs:
Terraform-Operator-AMD_x86_64:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.20"
- name: Log in to registry
run: echo "${{ secrets.PKG_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Build and push amd64
run: |
make docker-build-local docker-push
Terraform-Operator-ARM64:
runs-on: [arm64]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.20"
- name: Log in to registry
run: echo "${{ secrets.PKG_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Build and push arm64
run: |
make docker-build-local-arm docker-push-arm
Release-Terraform-Operator:
runs-on: [pi]
needs:
- Terraform-Operator-AMD_x86_64
- Terraform-Operator-ARM64
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Log in to registry
run: echo "${{ secrets.PKG_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Build and push amd64
run: |
make docker-release