Skip to content

Commit

Permalink
Merge pull request #20 from celestiaorg/feature/add-docker-workflow
Browse files Browse the repository at this point in the history
feat: add workflow to build docker image
  • Loading branch information
smuu committed Nov 28, 2023
2 parents 2eca278 + 910eb58 commit 8bb01d9
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.2.8 # yamllint disable-line rule:line-length
with:
dockerfile: Dockerfile

0 comments on commit 8bb01d9

Please sign in to comment.