Skip to content

Commit

Permalink
feat: add workflow to build docker image
Browse files Browse the repository at this point in the history
Signed-off-by: Smuu <18609909+Smuu@users.noreply.github.com>
  • Loading branch information
smuu committed Nov 27, 2023
1 parent baefb81 commit de09980
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Empty file added .github/wo
Empty file.
23 changes: 23 additions & 0 deletions .github/workflows/docker-build-publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Docker Build & Publish

# Trigger on all push events, new semantic version tags, and all PRs
on:
merge_group:
push:
branches:
- "**"
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+"
pull_request:

jobs:
docker-security-build:
permissions:
contents: write
packages: write
uses: celestiaorg/.github/.github/workflows/reusable_dockerfile_pipeline.yml@v0.3.0 # yamllint disable-line rule:line-length
with:
dockerfile: Dockerfile

0 comments on commit de09980

Please sign in to comment.