mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-05-21 08:33:55 +00:00
* Add Github Action from https://github.com/mambax/setup-polaris * Add tag information to action * repository name must be lowercase * repository name must be lowercase * repository name must be lowercase * Own image * Debug * Make the file local * Move into actions folder * Rename action * Remove path slash * Rename Dockerfile * Change path * Move script * Remove dot * Test * - Change to gh/download setup script - Move docs into Infra as Code page * Add small comment about Dockerfile * Rm unwanted line break * Improve action yaml * Update test_setup.yml * Update test_setup.yml * Update test_setup.yml * Pavel fixed all bugs Co-authored-by: dom <dominik.meyer01@sap.com> Co-authored-by: Pavel Zorin <pazonec@yandex.ru>
22 lines
384 B
YAML
22 lines
384 B
YAML
name: 'Install polaris'
|
|
description: 'Download a specific polaris version'
|
|
|
|
inputs:
|
|
version:
|
|
description: 'version of polaris'
|
|
required: true
|
|
default: 'latest'
|
|
|
|
runs:
|
|
using: 'docker'
|
|
image: './Dockerfile'
|
|
args:
|
|
- ${{ inputs.version }}
|
|
|
|
outputs:
|
|
version:
|
|
description: 'Version of polaris installed'
|
|
|
|
branding:
|
|
icon: 'download-cloud'
|
|
color: 'gray-dark' |