Skip to content

Add github workflows #1

Add github workflows

Add github workflows #1

Workflow file for this run

name: Helm
on:
push:
tags: [ 'chart/*' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Parse tag
id: branch_name
run: |
echo ::set-output name=SOURCE_TAG::${GITHUB_REF#refs/tags/chart/}
- name: Push chart
uses: appany/[email protected]
with:
name: livebox-exporter
repository: Tomy2e
tag: ${{ steps.branch_name.outputs.SOURCE_TAG }}
path: charts/livebox-exporter
registry: ghcr.io
registry_username: ${{ github.actor }}
registry_password: ${{ secrets.GITHUB_TOKEN }}