Skip to content

Scan images using Trivy #445

Scan images using Trivy

Scan images using Trivy #445

name: Publish Development Build
on:
pull_request:
types: [closed]
branches: [main]
jobs:
create-github-prerelease:
runs-on: ubuntu-latest
name: create and publish
if: github.event.pull_request.merged == true
steps:
- uses: actions/checkout@v4
- name: Initialize Python
uses: actions/setup-python@v1
with:
python-version: "3.11"
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: all
- name: Install cibuildwheel
run: python -m pip install cibuildwheel
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse --archs x86_64
- name: Build binary wheel and a source tarball
run: pipx run build --sdist
- name: copy artifacts to dist folder
run: cp ./wheelhouse/* ./dist/
- uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
automatic_release_tag: latest
prerelease: true
title: Development Build
files: |
dist/*
LICENSE
containerbuild:
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build images
uses: docker/build-push-action@v3
with:
context: .
push: true # Will only build if this is not here
build-args: |
LOGPREP_VERSION=latest
PYTHON_VERSION=${{ matrix.python-version }}
tags: |
ghcr.io/fkie-cad/logprep:py${{ matrix.python-version }}-main
ghcr.io/fkie-cad/logprep:py${{ matrix.python-version }}-latest