Skip to content

bumped horizon version #23

bumped horizon version

bumped horizon version #23

Workflow file for this run

on:
workflow_dispatch:
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Helm
uses: azure/setup-helm@v3
- name: Build chart
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm dependencies build
helm package .
- name: Upload to Sonatype repo
env:
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
run: |
PACKAGE="$(find . -type f -name 'horizon-*.tgz' -maxdepth 1 | head -n 1)"
curl -F file=@$PACKAGE --user "$NEXUS_USERNAME:$NEXUS_PASSWORD" --fail https://repo.evertrust.io/service/rest/v1/components?repository=charts