build: update build config #613
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: © Vegard IT GmbH (https://vegardit.com) | |
# SPDX-FileContributor: Sebastian Thomschke | |
# SPDX-License-Identifier: Apache-2.0 | |
# SPDX-ArtifactOfProjectHomePage: https://github.com/vegardit/docker-traefik-logrotate | |
# | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions | |
name: Build | |
on: | |
push: | |
branches-ignore: # build all branches except: | |
- 'dependabot/**' # prevent GHA triggered twice (once for commit to the branch and once for opening/syncing the PR) | |
tags-ignore: # don't build tags | |
- '**' | |
paths-ignore: | |
- '**/*.md' | |
- '.editorconfig' | |
- '.git*' | |
- '.github/*.yml' | |
- '.github/workflows/stale.yml' | |
pull_request: | |
paths-ignore: | |
- '**/*.md' | |
- '.editorconfig' | |
- '.git*' | |
- '.github/*.yml' | |
- '.github/workflows/stale.yml' | |
schedule: | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows | |
- cron: '0 17 * * 3' | |
workflow_dispatch: | |
# https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/ | |
defaults: | |
run: | |
shell: bash | |
env: | |
DOCKER_IMAGE_REPO: vegardit/traefik-logrotate | |
DOCKER_IMAGE_TAG: latest | |
TRIVY_CACHE_DIR: ~/.trivy/cache | |
jobs: | |
########################################################### | |
build: | |
########################################################### | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: "Show: GitHub context" | |
env: | |
GITHUB_CONTEXT: ${{ toJSON(github) }} | |
run: echo $GITHUB_CONTEXT | |
- name: "Show: environment variables" | |
run: env | sort | |
- name: Git Checkout | |
uses: actions/checkout@v4 # https://github.com/actions/checkout | |
- name: Check Dockerfile | |
uses: hadolint/[email protected] | |
with: | |
dockerfile: image/Dockerfile | |
ignore: DL3002,DL3018,SC3037 # https://github.com/hadolint/hadolint/wiki/DL3002 | |
- name: Cache trivy cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.TRIVY_CACHE_DIR }} | |
# https://github.com/actions/cache/issues/342#issuecomment-673371329 | |
key: ${{ runner.os }}-trivy-${{ github.run_id }} | |
restore-keys: | | |
${{ runner.os }}-trivy- | |
- name: Configure fast APT repository mirror | |
uses: vegardit/fast-apt-mirror.sh@v1 | |
- name: Install dos2unix | |
run: sudo apt-get install --no-install-recommends -y dos2unix | |
- name: "Determine if docker images shall be published" | |
run: | | |
# ACT -> https://nektosact.com/usage/index.html#skipping-steps | |
set -x | |
if [[ $GITHUB_REF_NAME == 'main' && $GITHUB_EVENT_NAME != 'pull_request' && -z "$ACT" ]]; then | |
echo "DOCKER_PUSH_GHCR=true" >> "$GITHUB_ENV" | |
if [[ -n "${{ secrets.DOCKER_HUB_USERNAME }}" ]]; then | |
echo "DOCKER_PUSH=true" >> "$GITHUB_ENV" | |
fi | |
fi | |
- name: Login to docker.io | |
if: ${{ env.DOCKER_PUSH }} | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_TOKEN }} | |
- name: Build ${{ env.DOCKER_IMAGE_REPO }}:${{ env.DOCKER_IMAGE_TAG }} | |
env: | |
TRIVY_GITHUB_TOKEN: ${{ github.token }} | |
run: bash build-image.sh | |
- name: Publish Docker image to GH registry | |
if: ${{ env.DOCKER_PUSH }} | |
uses: truemark/skopeo-copy-action@v1 # https://github.com/truemark/skopeo-copy-action | |
with: | |
src-image: "docker://docker.io/${{ env.DOCKER_IMAGE_REPO }}:${{ env.DOCKER_IMAGE_TAG }}" | |
dest-image: "docker://ghcr.io/${{ env.DOCKER_IMAGE_REPO }}:${{ env.DOCKER_IMAGE_TAG }}" | |
dest-username: "${{ github.actor }}" | |
dest-password: "${{ github.token }}" | |
multi-arch: "all" | |
- name: Delete untagged images | |
uses: actions/github-script@v7 | |
if: ${{ env.DOCKER_PUSH_GHCR }} | |
continue-on-error: true | |
with: | |
github-token: ${{ secrets.GHA_DELETE_PACKAGES }} | |
script: | | |
const imageName = /[^/]*$/.exec(process.env.DOCKER_IMAGE_REPO)[0] | |
const basePath = `/orgs/${{ github.repository_owner }}/packages/container/${imageName}/versions` | |
for (version of (await github.request(`GET ${basePath}`, { per_page: 100 })).data) { | |
if (version.metadata.container.tags.length == 0) { | |
console.log(`deleting ${version.name}...`) | |
const delResponse = await github.request(`DELETE ${basePath}/${version.id}`) | |
console.log(`status: ${delResponse.status}`) | |
} | |
} |