Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ on:
tags:
- "v*.*.*"
pull_request:
workflow_dispatch:
inputs:
dir_chart_version:
required: false
type: string
description: "Override the version of the dir Helm chart to install for the tests."
dirctl_image_tag:
required: false
type: string
description: "Override the tag of the dir-ctl Docker image to use in the tests."

permissions:
contents: write
Expand Down Expand Up @@ -78,8 +88,8 @@ jobs:
- changes
uses: ./.github/workflows/reusable-test-sdk.yaml
with:
dir_chart_version: v1.3.0
dirctl_image_tag: v1.3.0
dir_chart_version: ${{ inputs.dir_chart_version }}
dirctl_image_tag: ${{ inputs.dirctl_image_tag }}

release:
name: Release
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable-test-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ on:
workflow_call:
inputs:
dir_chart_version:
required: true
required: false
type: string
description: "The version of the dir Helm chart to install for the tests."
description: "Override the version of the dir Helm chart to install for the tests."
dirctl_image_tag:
required: true
required: false
type: string
description: "The tag of the dir-ctl Docker image to use in the tests."
description: "Override the tag of the dir-ctl Docker image to use in the tests."

permissions:
id-token: write
Expand Down
4 changes: 2 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
version: "3"

vars:
DIR_CHART_VERSION: '{{ .DIR_CHART_VERSION | default "0.0.0-latest" }}'
DIRCTL_IMAGE_TAG: '{{ .DIRCTL_IMAGE_TAG | default "latest" }}'
DIR_CHART_VERSION: '{{ .DIR_CHART_VERSION | default "v1.4.0" }}'
DIRCTL_IMAGE_TAG: '{{ .DIRCTL_IMAGE_TAG | default "v1.4.0" }}'
RENOVATE_VERSION: "43.89.5"
BIN_DIR: "{{ .ROOT_DIR }}/.bin"
HELM_VERSION: "4.1.3"
Expand Down
Loading
Loading