Docker Image -- AIS Operator Helper #1
Workflow file for this run
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
# Builds and pushes the ais-deploy-helper image, containing scripts and templates to prepare systems for ais deployment | |
name: Docker Image -- AIS Operator Helper | |
on: | |
workflow_dispatch: | |
inputs: | |
image_tag: | |
description: 'AIS Operator Helper image tag' | |
required: true | |
default: 'latest' | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and Push 'aistorage/ais-operator-helper' | |
run: | | |
pushd $GITHUB_WORKSPACE/ais-operator-helper | |
TAG="${{ inputs.image_tag }}" make all | |
popd |