2019-09-03 23:05:13 +08:00
|
|
|
name: Docker Image CI
|
|
|
|
|
2019-09-04 23:45:50 +08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2019-09-03 23:05:13 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Build the Docker image
|
2021-08-08 14:25:50 +08:00
|
|
|
run: docker build . --file src/admin/Bootstrap.Admin/Dockerfile --tag ba:$(date +%s)
|