Skip to content

RelizaHub Sumbit Build And Submit Release metadata action

Notifications You must be signed in to change notification settings

relizaio/reliza-docker-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 

Repository files navigation

reliza-docker-action

About

GitHub Action to Build a Docker image, push it to the registry and submit the release metadata to RelizaHub.

Usage

steps:
- uses: relizaio/[email protected]
  with:
    reliza_api_id: <api-id-obtained-from-relizahub>
    reliza_api_key: <api-key-obtained-from-relizahub>
    registry_username: <image-registry-username>
    registry_password: <image-registry-password>
    registry_host: <image-registry-host>
    image_namespace: <registry-namespace>
    image_name: <image-name>

Inputs

The actions supports the following inputs:

  • reliza_api_id: The project API ID obtained from RelizaHub.
  • reliza_api_key: The project API Key obtained from RelizaHub.
  • registry_username: Username for the image registry.
  • registry_password: Password for the image registry.
  • registry_host: Image registry host.
  • image_namespace: Namespace of the image on registry.
  • image_name: Name of the image.
  • path: Path to the relative to root of the repo (default is '.').
  • dockerfile_name: Name of the dockerfile (default is 'Dockerfile').
  • reliza_project_id: Project UUID if an org-wide key is used.
  • push_latest_tag: Whether to push image with 'latest' tag also, optional, default: true
  • platform_architectures: A comma separated list of platform architectures, optional, default: 'linux/amd64'; supported platforms: 'linux/amd64 linux/arm64 linux/s390x linux/arm/v7 linux/arm/v6'