Skip to content

update

update #20

name: Release k8s-ssh-bastion chart
on:
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/[email protected]
- name: Set versions
run: sed 's/<VERSION>/'${VERSION}'/' charts/k8s-ssh-bastion/Chart.yaml
env:
VERSION: ${{ github.ref_name }}
- name: Chart | Push
uses: appany/[email protected]
with:
name: k8s-ssh-bastion
repository: neptune-software/charts
registry: ghcr.io
registry_username: ${{ github.actor }}
registry_password: ${{ secrets.GITHUB_TOKEN}}