riesinger / github-workflows

A collection of re-usable workflows & scripts for GHA

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub Actions Workflows

This is a collection of workflows and scripts for GitHub Actions. I use these in a couple of other repositories.

Workflows

build-docker.yml

This builds a docker image from a Dockerfile and tags it following SemVer.

Usage example:
name: CI

on:
  push:

jobs:
  build:
    uses: riesinger/github-workflows/.github/workflows/build-docker.yml@main
    with:
      image-name: name-of-image # yields ghcr.io/riesinger/name-of-image
    secrets: inherit

About

A collection of re-usable workflows & scripts for GHA