diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index cfaef1e..7b49acb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,8 +12,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: stable + - uses: azure/setup-helm@v3 - - name: release + - name: github-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | diff --git a/Makefile b/Makefile index 800fa51..3d1d93f 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +SHELL := /usr/bin/env bash + # using the chart name and version from chart's metadata CHART_NAME ?= $(shell awk '/^name:/ { print $$2 }' Chart.yaml) CHART_VERSION ?= $(shell awk '/^version:/ { print $$2 }' Chart.yaml)