
* Add a Helm chart for a cronjob for doing etcd defrag * Add HelmRelease to deploy etcd defrag cronjob onto clusters * Use charts from the repository in tests * Clarify comment in values * Reinstate pull_request_target
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
name: publish artifacts
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
ref:
|
|
type: string
|
|
description: The Git ref under test.
|
|
required: true
|
|
outputs:
|
|
chart-version:
|
|
value: ${{ jobs.build_push_charts.outputs.chart-version }}
|
|
|
|
jobs:
|
|
build_push_charts:
|
|
name: Build and push Helm charts
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
chart-version: ${{ steps.semver.outputs.version }}
|
|
steps:
|
|
- name: Check out the repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ inputs.ref }}
|
|
# This is important for the semver action to work correctly
|
|
# when determining the number of commits since the last tag
|
|
fetch-depth: 0
|
|
|
|
- name: Get SemVer version for current commit
|
|
id: semver
|
|
uses: stackhpc/github-actions/semver@master
|
|
|
|
- name: Publish Helm charts
|
|
uses: stackhpc/github-actions/helm-publish@master
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
version: ${{ steps.semver.outputs.version }}
|
|
app-version: ${{ steps.semver.outputs.short-sha }}
|