mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2025-12-31 22:00:14 +01:00
18 lines
275 B
YAML
18 lines
275 B
YAML
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)
|
|
|