An open API service indexing awesome lists of open source software.

https://github.com/riesinger/github-workflows

A collection of re-usable workflows & scripts for GHA
https://github.com/riesinger/github-workflows

Last synced: 3 months ago
JSON representation

A collection of re-usable workflows & scripts for GHA

Awesome Lists containing this project

README

          

# 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:

```yaml
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
```