lava node build image v4.2.4 #300
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: Build an image with a node type | |
run-name: ${{ inputs.project_name }} ${{ inputs.node_type }} build image ${{ inputs.tag }} | |
on: | |
workflow_dispatch: | |
inputs: | |
bin: | |
description: 'Binary file name' | |
required: true | |
type: string | |
git_repository: | |
description: 'Git repository' | |
required: true | |
type: string | |
node_type: | |
description: 'Node type' | |
required: true | |
default: 'node' | |
type: choice | |
options: | |
- app | |
- cache | |
- node | |
- provider | |
project_name: | |
description: 'Image name' | |
type: string | |
required: true | |
tag: | |
description: 'Image tag' | |
type: string | |
required: true | |
jobs: | |
build_push_image: | |
name: Build and Push image to DockerHub | |
runs-on: ubuntu-latest | |
steps: | |
- name: Login to DockerHub | |
uses: docker/login-action@v3.0.0 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push image | |
uses: docker/build-push-action@v5.0.0 | |
with: | |
build-args: | | |
IMAGE_TAG=${{ inputs.tag }} | |
GIT_REPOSITORY=${{ inputs.git_repository }} | |
BIN=${{ inputs.bin }} | |
NODE_TYPE=${{ inputs.node_type }} | |
context: "{{ defaultContext }}:${{ inputs.project_name }}" | |
tags: "svetekllc/${{ inputs.project_name }}:${{ inputs.tag }}-${{ inputs.node_type }}" | |
push: true |