Skip to content

Commit

Permalink
workflow for building the image on push and prs
Browse files Browse the repository at this point in the history
  • Loading branch information
jawee committed Jan 2, 2025
1 parent 68b85ba commit 297b21e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build-docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Publish image

on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]

jobs:
build-and-publish-image:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Build the twitch-recorder Docker image
run: |
docker build .

0 comments on commit 297b21e

Please sign in to comment.