Skip to content

Commit

Permalink
Merge pull request #102 from Sak1012/Docker-PR
Browse files Browse the repository at this point in the history
Added Github Actions for testing PRs for Docker Builds
  • Loading branch information
mariobehling authored May 24, 2024
2 parents 3703f3c + 06daab1 commit b732ab8
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-talk:${{ github.sha }} .

0 comments on commit b732ab8

Please sign in to comment.