Skip to content

Commit

Permalink
Add workflow to build docker on pr to main and dev (#216)
Browse files Browse the repository at this point in the history
Signed-off-by: Marco A. Gutierrez <marcogg@marcogg.com>
  • Loading branch information
marcoag authored Aug 8, 2024
1 parent e329d2c commit 24c0f7e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/docker-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Docker PR Build

on:
pull_request:
branches: [development, main]

jobs:
build_docker_image:
name: Build Docker image
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Build Docker image
run: docker build -t eventyay-video:${{ github.sha }} .

0 comments on commit 24c0f7e

Please sign in to comment.