Skip to content

release-e37138d

Choose a tag to compare

@github-actions github-actions released this 28 Apr 16:45
· 55 commits to master since this release
e37138d
Add Docker package workflow (#347)

# Description

Add Docker package workflow.

## Changes

Build and push Docker image to GHCR with tags:

- `latest` for master branch.
- `release-*` or `v*` for Git tags, depends on the Git tag format.
- `sha-<sha>` for Git commit hash, only with pull requests, master branch and Git tags.

For pull request, only ensures that the docker build succeeds, does not push the image.
See: docker/build-push-action#751