Prepare for release v2023.9.7 (#41) #17
Workflow file for this run
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 | |
on: | |
push: | |
tags: | |
- "*.*" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v1 | |
- name: Install GitHub CLI | |
run: | | |
curl -fsSL https://github.com/github/hub/raw/master/script/get | bash -s 2.14.1 | |
sudo mv bin/hub /usr/local/bin | |
- name: Install Helm 3 | |
run: | | |
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash | |
- name: Clone charts repository | |
env: | |
GITHUB_USER: 1gtm | |
GITHUB_TOKEN: ${{ secrets.LGTM_GITHUB_TOKEN }} | |
CHART_REPOSITORY: ${{ secrets.BUNDLE_REPOSITORY }} | |
run: | | |
url="https://${GITHUB_USER}:${GITHUB_TOKEN}@${CHART_REPOSITORY}.git" | |
cd $RUNNER_WORKSPACE | |
git clone $url | |
cd $(basename $CHART_REPOSITORY) | |
git config user.name "${GITHUB_USER}" | |
git config user.email "${GITHUB_USER}@appscode.com" | |
- name: Package | |
env: | |
GITHUB_USER: 1gtm | |
GITHUB_TOKEN: ${{ secrets.LGTM_GITHUB_TOKEN }} | |
CHART_REPOSITORY: ${{ secrets.BUNDLE_REPOSITORY }} | |
run: | | |
cd $RUNNER_WORKSPACE/$(basename $CHART_REPOSITORY) | |
GIT_TAG=${GITHUB_REF#"refs/tags/"} | |
if [[ $GIT_TAG =~ "-alpha." ]] || [[ $GIT_TAG =~ "-beta." ]]; then | |
export REPO_DIR=testing | |
fi | |
./hack/scripts/open-pr.sh $GITHUB_WORKSPACE |