Skip to content

Commit

Permalink
add docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
fredex42 committed Aug 18, 2022
1 parent a48fc40 commit c7ffaac
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build on push

on:
push:
branches: [ "*" ]
pull_request:
branches: [ "main" ]
workflow_dispatch: {}

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- run: docker build . -t guardianmultimedia/spacemon:${{ github.run_number }}
- run: docker push guardianmultimedia/spacemon:${{ github.run_number }}

0 comments on commit c7ffaac

Please sign in to comment.