2024-08-30 17:53:06 +02:00
|
|
|
name: "lint, build and push"
|
2024-08-30 17:34:42 +02:00
|
|
|
on:
|
2024-09-02 20:23:34 +02:00
|
|
|
schedule:
|
2024-09-02 20:30:04 +02:00
|
|
|
- cron: "5 3 * * SUN"
|
2024-08-30 17:34:42 +02:00
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
# Variables: https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/store-information-in-variables#default-environment-variables
|
|
|
|
|
|
|
|
jobs:
|
2024-08-30 17:53:06 +02:00
|
|
|
gitleaks:
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run Gitleaks
|
|
|
|
uses: docker://zricethezav/gitleaks:v8.18.4
|
|
|
|
with:
|
|
|
|
args: detect --no-git --verbose --source ${{ github.workspace }}
|
|
|
|
|
|
|
|
hadolint:
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run hadolint
|
|
|
|
uses: docker://pipelinecomponents/hadolint:0.26.4
|
|
|
|
with:
|
|
|
|
args: hadolint Dockerfile
|
|
|
|
|
|
|
|
# shellcheck: # https://github.com/marketplace/actions/shellcheck
|
|
|
|
# steps:
|
|
|
|
# - name: Checkout code
|
|
|
|
# uses: actions/checkout@v4
|
|
|
|
# - name: Run ShellCheck
|
|
|
|
# uses: sudo-bot/action-shellcheck@latest
|
|
|
|
# with:
|
|
|
|
# cli-args: "shell.sh"
|
|
|
|
|
2024-08-30 17:34:42 +02:00
|
|
|
build:
|
|
|
|
steps:
|
|
|
|
- uses: https://github.com/actions/checkout@v4
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
# - name: Login to Docker Hub
|
|
|
|
# uses: docker/login-action@v3
|
|
|
|
# with:
|
|
|
|
# username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
# password: ${{ secrets.DOCKERHUB_TOKEN }}
|
2024-08-30 17:47:35 +02:00
|
|
|
- name: Extract repository name
|
2024-08-30 17:44:06 +02:00
|
|
|
id: meta
|
2024-08-30 17:43:31 +02:00
|
|
|
run: |
|
|
|
|
echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT
|
2024-08-30 17:47:35 +02:00
|
|
|
- name: Extract branch name
|
|
|
|
shell: bash
|
|
|
|
run: echo "REPO_BRANCH=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
|
|
|
|
id: extract_branch
|
2024-08-30 17:34:42 +02:00
|
|
|
- name: Build and push Docker image
|
|
|
|
uses: https://github.com/docker/build-push-action@v5
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
push: true
|
2024-08-30 17:47:35 +02:00
|
|
|
tags: "registry.mgrote.net/${{ steps.meta.outputs.REPO_NAME }}:latest,registry.mgrote.net/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.extract_branch.outputs.REPO_BRANCH }}"
|
2024-08-30 17:57:54 +02:00
|
|
|
|
|
|
|
notify:
|
|
|
|
steps:
|
|
|
|
- name: Send notification
|
2024-08-30 18:00:36 +02:00
|
|
|
uses: docker://registry.mgrote.net/allzweckcontainer:latest
|
2024-08-30 17:59:38 +02:00
|
|
|
if: always()
|
|
|
|
#if: failure()
|
2024-08-30 18:04:49 +02:00
|
|
|
with:
|
2024-09-02 20:29:46 +02:00
|
|
|
args: echo CI Error in ${{ steps.meta.outputs.REPO_NAME }} | s-nail \
|
|
|
|
--subject="git.mgrote.net - CI-Failure - ${{ steps.meta.outputs.REPO_NAME }}" \
|
2024-08-30 18:18:41 +02:00
|
|
|
--set=smtp-auth='none' \
|
|
|
|
--set=v15-compat \
|
|
|
|
--set=mta=smtp://docker10.mgrote.net:1025 \
|
|
|
|
-r gitea@mgrote.net \
|
2024-09-02 20:29:46 +02:00
|
|
|
michael.grote@posteo.de
|