ContainerImage.SpamasaurusRex/.gitea/workflows/actions.yaml
djpbessems 6c47c45f6d
Some checks failed
Container & Helm chart / Semantic Release (Dry-run) (push) Successful in 38s
Container & Helm chart / Container image (push) Successful in 1m2s
Container & Helm chart / Helm chart (push) Failing after 5s
chore: Rebase helm job container image
2024-02-28 09:47:53 +11:00

90 lines
3.4 KiB
YAML

name: Container & Helm chart
on: [push]
jobs:
Semantic Release (Dry-run):
runs-on: dind-rootless
steps:
- name: Check out repository code
uses: actions/checkout@v3
- 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: Checkout
uses: actions/checkout@v4
- 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:
runs-on: dind-rootless
needs: Semantic Release (Dry-run)
steps:
- name: Checkout
uses: actions/checkout@v4
- 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: Install helm w/ plugins
run: |
curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
apt install apt-transport-https --yes
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
apt update && apt install helm --yes
helm plugin install https://github.com/chartmuseum/helm-push
- name: Package helm chart into archive
run: |
helm package ./charts/spamasaurusrex
- 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