Skip to content

doc update for v1.4.0 #18

doc update for v1.4.0

doc update for v1.4.0 #18

Workflow file for this run

#
# OCI Native Ingress Controller
#
# Copyright (c) 2023 Oracle America, Inc. and its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
#
name: Release
on:
push:
# Build and publish artifacts for a release
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
env:
IMAGE_REGISTRY: ghcr.io/oracle
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
provenance: false
tags: ghcr.io/oracle/oci-native-ingress-controller:${{ github.ref_name }}