Skip to content

Commit

Permalink
remove build-image var and bugfix run-cluster-init action
Browse files Browse the repository at this point in the history
  • Loading branch information
leonlnj committed Jan 12, 2022
1 parent 3bb97e4 commit 7d2bbd0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/run-cluster-init/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ inputs:
default: ''
cluster_init_version:
required: true
description: 'Version of cluster to install, tar file has to follow naming - cluster-init.${{ env.CLUSTER_INIT_VERSION }}.tar '
description: 'Version of cluster to install, tar file has to follow naming - cluster-init.(CLUSTER_INIT_VERSION).tar '
default: ''

runs:
Expand All @@ -44,7 +44,7 @@ runs:
- name: Publish images to local registry
env:
DOCKER_REPOSITORY: ${{ inputs.local_registry }}/${{ github.repository }}
CLUSTER_INIT_VERSION: ${{ inputs.cluster_init_version || steps.build-image.outputs.cluster-init-version }}
CLUSTER_INIT_VERSION: ${{ inputs.cluster_init_version }}
shell: bash
run: |
# Cluster init
Expand All @@ -56,7 +56,7 @@ runs:
- name: Install Infrastructure
env:
CLUSTER_INIT_VERSION: ${{ inputs.cluster_init_version || steps.build-image.outputs.cluster-init-version }}
CLUSTER_INIT_VERSION: ${{ inputs.cluster_init_version }}
shell: bash
run: |
kubectl create ns infrastructure
Expand Down

0 comments on commit 7d2bbd0

Please sign in to comment.