mirror of
https://github.com/h44z/wg-portal.git
synced 2025-04-19 08:55:12 +00:00
Bumps the actions group with 3 updates in the / directory: [actions/setup-python](https://github.com/actions/setup-python), [docker/login-action](https://github.com/docker/login-action) and [docker/build-push-action](https://github.com/docker/build-push-action). Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) Updates `docker/login-action` from 1 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v1...v3) Updates `docker/build-push-action` from 5 to 6 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
85 lines
2.3 KiB
YAML
85 lines
2.3 KiB
YAML
# Publish chart to the GitHub Container Registry (GHCR) on push to master
|
|
# Run the following tests on PRs:
|
|
# - Check if chart's documentation is up to date
|
|
# - Check chart linting
|
|
# - Check chart installation in a Kind cluster
|
|
# - Check chart packaging
|
|
|
|
name: Chart
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [master]
|
|
paths: [deploy/helm]
|
|
push:
|
|
branches: [master]
|
|
paths: [deploy/helm]
|
|
|
|
jobs:
|
|
lint-test:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event_name == 'pull_request' }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
# ct lint requires Python 3.x to run following packages:
|
|
# - yamale (https://github.com/23andMe/Yamale)
|
|
# - yamllint (https://github.com/adrienverge/yamllint)
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.x'
|
|
|
|
- uses: helm/chart-testing-action@v2
|
|
|
|
- name: Run chart-testing (lint)
|
|
run: ct lint --config ct.yaml
|
|
|
|
- name: Check docs
|
|
run: |
|
|
docker run --rm --volume "${PWD}/deploy:/helm-docs" -u "$(id -u)" jnorwood/helm-docs
|
|
if ! git diff --exit-code; then
|
|
echo "error::Documentation is not up to date. Please run helm-docs and commit changes."
|
|
exit 1
|
|
fi
|
|
|
|
- uses: helm/kind-action@v1
|
|
|
|
- name: Run chart-testing (install)
|
|
run: ct install --config ct.yaml
|
|
|
|
- name: Run helm package charts
|
|
run: |
|
|
for chart in $(ct list-changed --config ct.yaml); do
|
|
helm package $chart -d out
|
|
done
|
|
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event_name == 'push' }}
|
|
permissions:
|
|
packages: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- uses: helm/chart-testing-action@v2
|
|
- name: Run helm package charts
|
|
run: |
|
|
for chart in $(ct list-changed --config ct.yaml); do
|
|
helm package $chart -d out
|
|
done
|
|
|
|
- name: Push chart to GHCR
|
|
working-directory: out
|
|
run: |
|
|
for pkg in $(ls *.tgz); do
|
|
helm push $pkg oci://ghcr.io/${{ github.repository_owner }}/charts
|
|
done
|