Skip to content

Instantly share code, notes, and snippets.

@mmontes11
Created April 19, 2021 19:57
Show Gist options
  • Select an option

  • Save mmontes11/25cd381bb1112f6b64f7c7993b25fe0d to your computer and use it in GitHub Desktop.

Select an option

Save mmontes11/25cd381bb1112f6b64f7c7993b25fe0d to your computer and use it in GitHub Desktop.
name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- uses: azure/setup-helm@v1
with:
version: "v3.5.3"
id: install
- name: Release
env:
HELM_REPO_USERNAME: ${{ secrets.HELM_REPO_USERNAME }}
HELM_REPO_PASSWORD: ${{ secrets.HELM_REPO_PASSWORD }}
run: ./scripts/release.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment