Skip to content

Commit

Permalink
feat(ci): add docker build and publish ci
Browse files Browse the repository at this point in the history
  • Loading branch information
MSevey committed Jun 26, 2024
1 parent 00be611 commit 8ecd475
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/docker-build-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: docker-build-publish

# Trigger on all push events, new semantic version tags, and all PRs
on:
push:
branches:
- "main"
- "v[0-9].[0-9].x"
- "v[0-9].[0-9][0-9].x"
- "v[0-9].x"
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-build:
permissions:
contents: write
packages: write
uses: rollkit/.github/.github/workflows/reusable_dockerfile_pipeline.yml@update-docker

Check failure on line 23 in .github/workflows/docker-build-publish.yml

View workflow job for this annotation

GitHub Actions / lint / yamllint

23:81 [line-length] line too long (90 > 80 characters)
with:
dockerfile: Dockerfile
secrets: inherit

0 comments on commit 8ecd475

Please sign in to comment.