a731b62a52
CI Git-Pages Main / Load git-pages.gitea-env.conf to pipeline env (push) Successful in 30s
CI Git-Pages Main / Report Summary (push) Successful in 4s
acc-tests Cucumber test report
CI Feature / Load example-gitea-env.conf to pipeline env (push) Successful in 24s
CI Git-Pages Main / Check existing artifact (push) Failing after 15s
CI Git-Pages Main / Build & Push Helm chart (push) Has been skipped
CI Feature / Cucumber tests (push) Successful in 1m1s
unit-tests Bats test report
CI Feature / Bats tests (push) Successful in 1m29s
CI Feature / Report Summary (push) Successful in 4s
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
name: CI Git-Pages Main
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- feature/helm-chart
|
|
paths:
|
|
- git-pages/**
|
|
- .gitea/workflows/helm-build-push.yml
|
|
- .gitea/workflows/git-pages.*
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
load-config:
|
|
name: Load git-pages.gitea-env.conf to pipeline env
|
|
uses: niko/gitea-ci-library/.gitea/workflows/config-provider.yml@main
|
|
secrets: inherit
|
|
with:
|
|
config_path: .gitea/workflows/git-pages.gitea-env.conf
|
|
|
|
check-version:
|
|
name: Check existing artifact
|
|
needs: [load-config]
|
|
uses: niko/gitea-ci-library/.gitea/workflows/check-version.yml@main
|
|
secrets: inherit
|
|
with:
|
|
env_json: ${{ needs.load-config.outputs.env_json }}
|
|
|
|
helm-push:
|
|
name: Build & Push Helm chart
|
|
needs: [load-config, check-version]
|
|
if: needs.check-version.outputs.artifact_exists != 'true'
|
|
uses: niko/gitea-ci-library/.gitea/workflows/helm-build-push.yml@main
|
|
secrets: inherit
|
|
with:
|
|
env_json: ${{ needs.load-config.outputs.env_json }}
|
|
version: ${{ needs.check-version.outputs.version }}
|
|
chart_path: git-pages
|
|
|
|
report-summary:
|
|
name: Report Summary
|
|
needs: [load-config, helm-push]
|
|
if: always()
|
|
uses: niko/gitea-ci-library/.gitea/workflows/report-summary.yml@main
|
|
with:
|
|
env_json: ${{ needs.load-config.outputs.env_json }}
|
|
suites: ""
|