Skip to content

Commit

Permalink
Add workflow to test the build of the image (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored Jun 26, 2024
1 parent 6ce0737 commit f4ce3f8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build

on:
pull_request:
branches:
- main

jobs:
build:
name: Build image
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]

- name: Build
uses: docker/[email protected]
with:
context: .
push: false
tags: "ghcr.io/${{ github.repository_owner }}/private-demo:pr-${{ github.event.number }}"

0 comments on commit f4ce3f8

Please sign in to comment.