Skip to content

Commit

Permalink
ci: add new release action to run when published
Browse files Browse the repository at this point in the history
It is better to have it as separate action.
So it can grow with nore thiungs to do on release.

It calls existing docker build and push to avoid duplication.

Signed-off-by: Boris Glimcher <Boris.Glimcher@emc.com>
  • Loading branch information
glimchb committed Jul 18, 2024
1 parent 209ae43 commit 7752833
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Release

on:
workflow_dispatch:
release:
types: [published]

jobs:

release-docker:
uses: ./.github/workflows/docker.yaml
secrets: inherit

0 comments on commit 7752833

Please # to comment.