28 lines
529 B
YAML
28 lines
529 B
YAML
name: Docker - KeyMaker
|
|
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- 'v*.*.*'
|
|
paths:
|
|
- 'Tools/KeyMaker/**'
|
|
- 'Framework/**'
|
|
- 'ProjectPlugins/**'
|
|
- .github/workflows/docker-KeyMaker.yml
|
|
- .github/workflows/docker-reusable.yml
|
|
workflow_dispatch:
|
|
|
|
|
|
jobs:
|
|
build-and-push:
|
|
name: Build and Push
|
|
uses: ./.github/workflows/docker-reusable.yml
|
|
with:
|
|
docker_file: Tools/KeyMaker/docker/Dockerfile
|
|
docker_repo: codexstorage/codex-keymaker
|
|
secrets: inherit
|
|
|