Skip to content

Commit

Permalink
docker build action
Browse files Browse the repository at this point in the history
  • Loading branch information
coillteoir committed Nov 28, 2023
1 parent 86b1391 commit da7daa5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/image-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Dev Image Build"
run-name: ${{ github.actor }} Dev Image Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: echo "Job triggered by ${{ github.event_name }}."
- uses: actions/checkout@v3
- run: docker --version
- run: docker build -t csppie .
- run: docker image ls | grep csppie

0 comments on commit da7daa5

Please sign in to comment.