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
- Host: GitHub
- URL: https://github.com/riesinger/github-workflows
- Owner: riesinger
- Created: 2023-07-23T12:01:42.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-09T11:47:49.000Z (almost 2 years ago)
- Last Synced: 2025-05-24T14:56:01.089Z (about 1 year ago)
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```