test
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 3s Details

This commit is contained in:
Tomasz Frątczak 2023-11-05 16:23:03 +01:00
parent c4541fa2c7
commit 6bea3f4fbd
1 changed files with 8 additions and 6 deletions

View File

@ -16,10 +16,12 @@ jobs:
- name: Package helm chart
run: |
helm package chart/
- name: Add helm repo
run: |
helm repo add --username accidentallycompetent --password ${{ secret.PUBLIC_PACKAGE_WRITE }} octocloudlab https://gitea.example.com/api/packages/octocloudlab/helm
- name: Upload chart artifact
run: |
helm cm-push chart/*.tgz octocloudlab
- name: Push Helm Chart to Gitea
uses: bsord/helm-push@4.2.0
with:
username: accidentallycompetent
password: ${{ secret.PUBLIC_PACKAGE_WRITE }}
registry-url: 'https://gitea.example.com/api/packages/octocloudlab/helm'
force: true
chart-folder: chart
- run: echo "🍏 This job's status is ${{ job.status }}."