mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2026-01-20 15:40:24 +01:00
add build_image workflow
This commit is contained in:
parent
6d3fe8499a
commit
48648913f8
17
.github/workflows/build_image.yml
vendored
Normal file
17
.github/workflows/build_image.yml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
name: Build Docker Image
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master, feature/docker ]
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build the Docker image
|
||||
run: docker build . --file Dockerfile --tag boswatch:$(date +%s)
|
||||
|
||||
Loading…
Reference in a new issue