mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-10 02:20:18 +00:00
Added Docker Build workflow (Github Workflows)
This commit is contained in:
parent
95e8b17ddd
commit
28e7476f70
19
.github/workflows/docker-build.yml
vendored
Normal file
19
.github/workflows/docker-build.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: Docker Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
buildx:
|
||||||
|
name: Docker Build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Setup Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v1.5.1
|
||||||
|
id: buildx
|
||||||
|
with:
|
||||||
|
install: true
|
||||||
|
- name: Build
|
||||||
|
run: docker build . # will run buildx
|
Loading…
Reference in New Issue
Block a user