. π π πͺ Staged release for Linux, Windows and Docker #62
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
name: . π π πͺ Staged release for Linux, Windows and Docker | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'Tag to release' | |
required: true | |
assetsType: | |
description: 'Assets type to release: all, docker, targz, zip, msi, deb, rpm' | |
required: true | |
default: 'all' | |
targzOS: | |
description: 'OS for which tarballs will be released: all, linux, macos' | |
required: true | |
default: 'all' | |
jobs: | |
publish-docker-images: | |
uses: ./.github/workflows/component_docker_publish.yml | |
secrets: | |
DOCKER_HUB_ID: ${{secrets.OHAI_DOCKER_HUB_ID}} | |
DOCKER_HUB_PASSWORD: ${{secrets.OHAI_DOCKER_HUB_PASSWORD}} | |
with: | |
TAG: ${{ github.event.inputs.tag }} | |
ASSETS_TYPE: ${{ github.event.inputs.assetsType }} |