Add release notes for v0.26.0 (#1461) #216
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
# Only release when a new GH release branch is pushed | |
on: | |
push: | |
branches: | |
- 'release/v[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout and set env | |
- name: Checkout | |
uses: actions/[email protected] | |
- id: load-version | |
run: | | |
source $GITHUB_WORKSPACE/versions.env | |
echo "GO_VERSION=$GO_VERSION" >> $GITHUB_ENV | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: Set up Go | |
uses: actions/[email protected] | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Setup kubecfg | |
run: | | |
mkdir -p ~/bin | |
curl -sLf https://github.com/kubecfg/kubecfg/releases/download/v0.26.0/kubecfg_Linux_X64 >~/bin/kubecfg | |
chmod +x ~/bin/kubecfg | |
- name: Install dependencies | |
run: | | |
go install gotest.tools/[email protected] | |
# Run tests | |
- name: Tests | |
run: make test | |
# Tag for GoReleaser from release branch name | |
- name: Tag Release | |
run: | | |
RELEASE_BRANCH="${{ github.ref }}" | |
VERSION_TAG=$(echo "${RELEASE_BRANCH}" | awk -F'/' '{print $NF}') | |
git tag -a "${VERSION_TAG}" -m "Tag autogenerated ${VERSION_TAG}" | |
git push origin "${VERSION_TAG}" |