2023-04-14 14:54:34 +08:00
|
|
|
name: generate-chart
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- "*"
|
|
|
|
|
2023-10-13 16:04:27 +00:00
|
|
|
env:
|
|
|
|
# renovate: datasource=docker depName=alpine/helm
|
2024-02-17 21:24:38 +00:00
|
|
|
HELM_VERSION: "3.14.0"
|
2023-10-13 16:04:27 +00:00
|
|
|
|
2023-04-14 14:54:34 +08:00
|
|
|
jobs:
|
|
|
|
generate-chart-publish:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-25 03:41:55 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-04-14 14:54:34 +08:00
|
|
|
- name: install tools
|
|
|
|
run: |
|
|
|
|
apt update -y
|
2023-10-05 21:38:19 +02:00
|
|
|
apt install -y curl ca-certificates curl gnupg
|
2023-10-05 21:35:51 +02:00
|
|
|
# helm
|
2023-04-14 15:49:18 +08:00
|
|
|
curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | tee /usr/share/keyrings/helm.gpg > /dev/null
|
|
|
|
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | tee /etc/apt/sources.list.d/helm-stable-debian.list
|
2023-10-05 21:35:51 +02:00
|
|
|
# docker
|
2023-10-05 21:38:19 +02:00
|
|
|
install -m 0755 -d /etc/apt/keyrings
|
2023-10-05 21:33:39 +02:00
|
|
|
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
2023-10-05 21:32:54 +02:00
|
|
|
chmod a+r /etc/apt/keyrings/docker.gpg
|
2023-10-05 21:35:51 +02:00
|
|
|
echo "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
|
|
apt update -y
|
2023-10-13 16:04:27 +00:00
|
|
|
apt install -y python helm=${{ env.HELM_VERSION }}-1 python3-pip apt-transport-https docker-ce-cli
|
2023-04-14 14:54:34 +08:00
|
|
|
pip install awscli
|
2023-05-13 18:11:14 +08:00
|
|
|
|
|
|
|
- name: Import GPG key
|
|
|
|
id: import_gpg
|
|
|
|
uses: https://github.com/crazy-max/ghaction-import-gpg@v5
|
|
|
|
with:
|
|
|
|
gpg_private_key: ${{ secrets.GPGSIGN_KEY }}
|
|
|
|
passphrase: ${{ secrets.GPGSIGN_PASSPHRASE }}
|
|
|
|
fingerprint: CC64B1DB67ABBEECAB24B6455FC346329753F4B0
|
|
|
|
|
|
|
|
# Using helm gpg plugin as 'helm package --sign' has issues with gpg2: https://github.com/helm/helm/issues/2843
|
2023-04-14 14:54:34 +08:00
|
|
|
- name: package chart
|
|
|
|
run: |
|
2023-11-14 23:27:27 +00:00
|
|
|
echo ${{ secrets.DOCKER_CHARTS_PASSWORD }} | docker login -u ${{ secrets.DOCKER_CHARTS_USERNAME }} --password-stdin
|
2023-05-13 18:11:14 +08:00
|
|
|
# FIXME: use upstream after https://github.com/technosophos/helm-gpg/issues/1 is solved
|
|
|
|
helm plugin install https://github.com/pat-s/helm-gpg
|
2023-11-27 18:35:42 +00:00
|
|
|
helm dependency build
|
2023-04-14 14:54:34 +08:00
|
|
|
helm package --version "${GITHUB_REF#refs/tags/v}" ./
|
2023-05-13 18:11:14 +08:00
|
|
|
helm gpg sign "gitea-${GITHUB_REF#refs/tags/v}.tgz"
|
2023-04-14 14:54:34 +08:00
|
|
|
mkdir gitea
|
|
|
|
mv gitea*.tgz gitea/
|
2023-11-16 22:07:25 +01:00
|
|
|
curl -s -L -o gitea/index.yaml https://dl.gitea.com/charts/index.yaml
|
2023-08-03 07:25:52 +00:00
|
|
|
helm repo index gitea/ --url https://dl.gitea.com/charts --merge gitea/index.yaml
|
2023-11-14 23:27:27 +00:00
|
|
|
# push to dockerhub
|
|
|
|
echo ${{ secrets.DOCKER_CHARTS_PASSWORD }} | helm registry login -u ${{ secrets.DOCKER_CHARTS_USERNAME }} registry-1.docker.io --password-stdin
|
2023-11-16 22:07:25 +01:00
|
|
|
helm push gitea/gitea-${GITHUB_REF#refs/tags/v}.tgz oci://registry-1.docker.io/giteacharts
|
2023-11-14 23:27:27 +00:00
|
|
|
helm registry logout registry-1.docker.io
|
2023-05-13 18:11:14 +08:00
|
|
|
|
2023-04-14 14:54:34 +08:00
|
|
|
- name: aws credential configure
|
2023-04-14 21:06:43 +08:00
|
|
|
uses: https://github.com/aws-actions/configure-aws-credentials@v2
|
2023-04-14 14:54:34 +08:00
|
|
|
with:
|
|
|
|
aws-access-key-id: ${{ secrets.AWS_KEY_ID }}
|
2023-04-14 21:06:43 +08:00
|
|
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
2023-04-14 14:54:34 +08:00
|
|
|
aws-region: ${{ secrets.AWS_REGION }}
|
2023-05-13 18:11:14 +08:00
|
|
|
|
2023-04-14 14:54:34 +08:00
|
|
|
- name: Copy files to S3 and clear cache
|
|
|
|
run: |
|
|
|
|
aws s3 sync gitea/ s3://${{ secrets.AWS_S3_BUCKET}}/charts/
|