add workflows
This commit is contained in:
37
.gitea/workflows/lint-test.yaml
Normal file
37
.gitea/workflows/lint-test.yaml
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
name: lint-and-test-charts
|
||||||
|
|
||||||
|
on: pull_request
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint-test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Set up Helm
|
||||||
|
uses: azure/setup-helm@v4
|
||||||
|
with:
|
||||||
|
version: latest
|
||||||
|
|
||||||
|
- uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: "3.13"
|
||||||
|
check-latest: true
|
||||||
|
|
||||||
|
- name: Set up chart-testing
|
||||||
|
uses: helm/chart-testing-action@v2.7.0
|
||||||
|
|
||||||
|
- name: Run chart-testing (list-changed)
|
||||||
|
id: list-changed
|
||||||
|
run: |
|
||||||
|
changed=$(ct list-changed --target-branch ${{ gitea.event.repository.default_branch }})
|
||||||
|
if [[ -n "$changed" ]]; then
|
||||||
|
echo "changed=true" >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Run chart-testing (lint)
|
||||||
|
if: steps.list-changed.outputs.changed == 'true'
|
||||||
|
run: ct lint --target-branch ${{ gitea.event.repository.default_branch }}
|
37
.gitea/workflows/release-to-harbor.yml
Normal file
37
.gitea/workflows/release-to-harbor.yml
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
name: Release Charts
|
||||||
|
# https://github.com/thpham/helm-oci-charts-releaser
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- 'charts/**'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
packages: write
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Configure Git
|
||||||
|
run: |
|
||||||
|
git config user.name "${{ gitea.actor }}"
|
||||||
|
git config user.email "${{ gitea.actor }}@users.noreply.${{ vars.REPOSITORY_HOST }}"
|
||||||
|
|
||||||
|
- name: Run chart-releaser
|
||||||
|
uses: https://github.com/thpham/helm-oci-charts-releaser@v1
|
||||||
|
with:
|
||||||
|
oci_registry: ${{ vars.REGISTRY_HOST }}/v2/helm-charts
|
||||||
|
oci_username: ${{ vars.REGISTRY_USER }}
|
||||||
|
oci_password: ${{ secrets.REGISTRY_SECRET }}
|
||||||
|
gitea_server: ${{ vars.REPOSITORY_HOST }}
|
||||||
|
gitea_token: ${{ secrets.REPOSITORY_TOKEN }}
|
||||||
|
tag_name_pattern: '{chartName}-chart'
|
||||||
|
skip_existing: true
|
37
.github/workflows/lint-test.yaml
vendored
37
.github/workflows/lint-test.yaml
vendored
@@ -1,37 +0,0 @@
|
|||||||
# name: lint-and-test-charts
|
|
||||||
|
|
||||||
# on: pull_request
|
|
||||||
|
|
||||||
# jobs:
|
|
||||||
# lint-test:
|
|
||||||
# runs-on: ubuntu-latest
|
|
||||||
# steps:
|
|
||||||
# - name: Checkout
|
|
||||||
# uses: actions/checkout@v4
|
|
||||||
# with:
|
|
||||||
# fetch-depth: 0
|
|
||||||
|
|
||||||
# - name: Set up Helm
|
|
||||||
# uses: azure/setup-helm@v4
|
|
||||||
# with:
|
|
||||||
# version: latest
|
|
||||||
|
|
||||||
# - uses: actions/setup-python@v5
|
|
||||||
# with:
|
|
||||||
# python-version: "3.13"
|
|
||||||
# check-latest: true
|
|
||||||
|
|
||||||
# - name: Set up chart-testing
|
|
||||||
# uses: helm/chart-testing-action@v2.7.0
|
|
||||||
|
|
||||||
# - name: Run chart-testing (list-changed)
|
|
||||||
# id: list-changed
|
|
||||||
# run: |
|
|
||||||
# changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
|
|
||||||
# if [[ -n "$changed" ]]; then
|
|
||||||
# echo "changed=true" >> "$GITHUB_OUTPUT"
|
|
||||||
# fi
|
|
||||||
|
|
||||||
# - name: Run chart-testing (lint)
|
|
||||||
# if: steps.list-changed.outputs.changed == 'true'
|
|
||||||
# run: ct lint --target-branch ${{ github.event.repository.default_branch }}
|
|
46
.github/workflows/release.yml
vendored
46
.github/workflows/release.yml
vendored
@@ -1,27 +1,27 @@
|
|||||||
# name: release-charts
|
name: release-charts
|
||||||
|
|
||||||
# on:
|
on:
|
||||||
# push:
|
push:
|
||||||
# branches:
|
branches:
|
||||||
# - main
|
- main
|
||||||
|
|
||||||
# jobs:
|
jobs:
|
||||||
# release:
|
release:
|
||||||
# permissions:
|
permissions:
|
||||||
# contents: write
|
contents: write
|
||||||
# runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# steps:
|
steps:
|
||||||
# - name: Checkout
|
- name: Checkout
|
||||||
# uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
# with:
|
with:
|
||||||
# fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
# - name: Configure Git
|
- name: Configure Git
|
||||||
# run: |
|
run: |
|
||||||
# git config user.name "$GITHUB_ACTOR"
|
git config user.name "$GITHUB_ACTOR"
|
||||||
# git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||||
|
|
||||||
# - name: Run chart-releaser
|
- name: Run chart-releaser
|
||||||
# uses: helm/chart-releaser-action@v1.7.0
|
uses: helm/chart-releaser-action@v1.7.0
|
||||||
# env:
|
env:
|
||||||
# CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
Reference in New Issue
Block a user