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 \
|
|
|
|
--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 02:09:58 +00:00
|
|
|
|
2024-02-19 10:02:23 +00:00
|
|
|
Container image (docker.io):
|
|
|
|
container: gcr.io/kaniko-project/executor:debug
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- run: |
|
|
|
|
export VALID_TAG=$(cat .version 2> /dev/null) && [ -n "$VALID_TAG" ] || (echo 'No release tag - exiting'; exit 0)
|
|
|
|
- run: |
|
|
|
|
wget https://github.com/jqlang/jq/releases/download/jq-1.6/jq-linux64 -qO /bin/jq
|
|
|
|
chmod +x /bin/jq
|
|
|
|
- run: |
|
|
|
|
/bin/jq '.auths["https://index.docker.io/v1/"].auth="'"$(echo -n $DOCKER_USERNAME':'$DOCKER_PASSWORD | base64)"'"' --null-input > /kaniko/.docker/config.json
|
|
|
|
env:
|
|
|
|
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- run: |
|
|
|
|
/kaniko/executor \
|
|
|
|
--dockerfile=Dockerfile \
|
|
|
|
--context=dir://. \
|
|
|
|
--destination=docker.io/djpbessems/spamasaurusrex:latest \
|
|
|
|
--destination=docker.io/djpbessems/spamasaurusrex:$VALID_TAG
|