update readme (#20) #1
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 | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/release.yml | |
push: | |
tags: | |
- 'v*.*.*' | |
env: | |
GITHUB_REF: ${{ github.ref }} | |
jobs: | |
env: | |
name: prepare release env | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: get release version | |
run: | | |
echo "RELEASE_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | |
outputs: | |
RELEASE_VERSION: ${{ env.RELEASE_VERSION }} | |
release: | |
name: release | |
runs-on: ubuntu-latest | |
needs: [ env ] | |
permissions: | |
contents: write | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: setup helm | |
uses: azure/setup-helm@v4 | |
- name: chart package | |
if: github.event_name != 'pull_request' | |
run: | | |
helm package ./policy | |
- name: publish release | |
if: github.event_name != 'pull_request' | |
uses: softprops/action-gh-release@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
draft: true | |
generate_release_notes: true | |
files: | | |
/home/runner/work/mce-install-kube/*.tgz |