2024-02-19 01:32:57 +00:00
|
|
|
name: Container & Helm chart
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
2024-02-19 01:42:23 +00:00
|
|
|
Semantic Release (Dry-run):
|
2024-02-19 01:32:57 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v3
|
2024-02-19 09:40:58 +00:00
|
|
|
- name: Setup Node
|
|
|
|
uses: actions/setup-node@v3
|
2024-02-19 09:30:18 +00:00
|
|
|
with:
|
2024-02-19 09:40:58 +00:00
|
|
|
node-version: 20
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
npm install \
|
|
|
|
semantic-release \
|
|
|
|
@semantic-release/commit-analyzer \
|
|
|
|
@semantic-release/exec
|
|
|
|
- name: Semantic Release (dry-run)
|
|
|
|
run: |
|
|
|
|
npx semantic-release \
|
|
|
|
--package @semantic-release/exec \
|
|
|
|
--package semantic-release \
|
|
|
|
--branches ${{ gitea.refname }} \
|
2024-02-19 09:50:31 +00:00
|
|
|
--tag-format 'v${version}' \
|
2024-02-19 09:40:58 +00:00
|
|
|
--dry-run \
|
|
|
|
--plugins @semantic-release/commit-analyzer,@semantic-release/exec \
|
|
|
|
--analyzeCommits @semantic-release/commit-analyzer \
|
|
|
|
--verifyRelease @semantic-release/exec \
|
2024-02-19 23:22:08 +00:00
|
|
|
--verifyReleaseCmd 'echo "version=$${nextRelease.version}" >> $GITHUB_OUTPUT'
|
|
|
|
# --verifyReleaseCmd 'echo "$${nextRelease.version}" > .version'
|
2024-02-19 01:57:46 +00:00
|
|
|
env:
|
2024-02-19 09:30:18 +00:00
|
|
|
GIT_CREDENTIALS: djpbessems:${{ secrets.GIT_APIKEY }}
|
2024-02-19 23:22:08 +00:00
|
|
|
# - name: Set output variable
|
|
|
|
# id: sem_rel
|
|
|
|
# run: |
|
|
|
|
# echo "version=$(cat .version)" >> $GITHUB_OUTPUT
|
2024-02-19 02:09:58 +00:00
|
|
|
|
2024-02-19 10:02:23 +00:00
|
|
|
Container image (docker.io):
|
2024-02-20 01:23:40 +00:00
|
|
|
container: catthehacker/ubuntu:act-latest
|
2024-02-19 10:02:23 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-02-19 23:59:29 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
# - name: Create Kubeconfig
|
|
|
|
# run: |
|
|
|
|
# mkdir $HOME/.kube
|
|
|
|
# echo "${{ secrets.KUBECONFIG_BUILDX }}" > $HOME/.kube/config
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
with:
|
|
|
|
driver: kubernetes
|
|
|
|
driver-opts: |
|
2024-02-20 01:23:40 +00:00
|
|
|
namespace=gitea
|
2024-02-19 23:59:29 +00:00
|
|
|
qemu.install=true
|
|
|
|
- name: Login to Docker Registry
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
|
|
|
registry: code.spamasaurus.com
|
|
|
|
username: ${{ secrets.GIT_USERNAME }}
|
|
|
|
password: ${{ secrets.GIT_APIKEY }}
|
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v5
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
code.spamasaurus.com/djpbessems/spamasaurusrex:${{ steps.sem_rel.outputs.version }}
|