105 lines
3.4 KiB
YAML
105 lines
3.4 KiB
YAML
name: Container & Helm chart
|
|
on: [push]
|
|
|
|
jobs:
|
|
Checkout:
|
|
runs-on: dind
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- name: Store repository as artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: source
|
|
path: |
|
|
.
|
|
Semantic Release (Dry-run):
|
|
runs-on: dind-rootless
|
|
needs: Checkout
|
|
steps:
|
|
- name: Download repository
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: source
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20
|
|
- name: Install dependencies
|
|
run: |
|
|
npm install \
|
|
semantic-release \
|
|
@semantic-release/commit-analyzer \
|
|
@semantic-release/exec
|
|
- name: Semantic Release (dry-run)
|
|
id: sem_rel
|
|
run: |
|
|
npx semantic-release \
|
|
--package @semantic-release/exec \
|
|
--package semantic-release \
|
|
--branches ${{ gitea.refname }} \
|
|
--tag-format 'v${version}' \
|
|
--dry-run \
|
|
--plugins @semantic-release/commit-analyzer,@semantic-release/exec \
|
|
--analyzeCommits @semantic-release/commit-analyzer \
|
|
--verifyRelease @semantic-release/exec \
|
|
--verifyReleaseCmd 'echo "version=$${nextRelease.version}" >> $GITHUB_OUTPUT'
|
|
# --verifyReleaseCmd 'echo "$${nextRelease.version}" > .version'
|
|
env:
|
|
GIT_CREDENTIALS: djpbessems:${{ secrets.GIT_APIKEY }}
|
|
- name: Assert semantic release output
|
|
run: |
|
|
echo "${{ steps.sem_rel.outputs.version }}"
|
|
# [[ -z "${{ steps.sem_rel.outputs.version }}" ]] && (echo 'No release tag - exiting'; exit 1) || exit 0
|
|
|
|
Container image:
|
|
container: catthehacker/ubuntu:act-latest
|
|
runs-on: dind
|
|
needs: Semantic Release (Dry-run)
|
|
steps:
|
|
- name: Download repository
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: source
|
|
- name: Kaniko build
|
|
uses: aevea/action-kaniko@master
|
|
with:
|
|
registry: code.spamasaurus.com
|
|
image: djpbessems/spamasaurusrex
|
|
username: ${{ secrets.GIT_USERNAME }}
|
|
password: ${{ secrets.GIT_APIKEY }}
|
|
tag: ${{ steps.sem_rel.outputs.version }}
|
|
|
|
Helm chart:
|
|
container: alpine/helm
|
|
runs-on: dind-rootless
|
|
needs: Semantic Release (Dry-run)
|
|
|
|
steps:
|
|
- name: Download repository
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: source
|
|
- name: Inject semantic release version
|
|
run: |
|
|
sed -i 's/{{ chart_version }}/'${{ steps.sem_rel.outputs.version }}'/g' charts/spamasaurusrex/Chart.yaml
|
|
sed -i 's/{{ image_tag }}/'${{ steps.sem_rel.outputs.version }}'/g' charts/spamasaurusrex/values.yaml
|
|
- name: Package helm chart into archive
|
|
run: |
|
|
helm package ./charts/spamasaurusrex
|
|
- name: Install helm plugin
|
|
run: |
|
|
helm plugin install https://github.com/chartmuseum/helm-push
|
|
- name: Add target helm repository
|
|
run: |
|
|
helm repo add \
|
|
--username $GIT_USERNAME \
|
|
--password $GIT_APIKEY \
|
|
spamasaurus \
|
|
https://code.spamasaurus.com/api/packages/$GIT_USERNAME/helm
|
|
- name: Push helm chart
|
|
run: |
|
|
helm cm-push \
|
|
spamasaurusrex-*.tgz \
|
|
spamasaurus
|