mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 23:00:18 +00:00
c68f52824c
Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 2.8.0 to 2.9.0. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v2.8.0...v2.9.0) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
470 B
YAML
23 lines
470 B
YAML
name: Docker Build
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, assigned, edited, ready_for_review]
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
buildx:
|
|
name: Docker Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Setup Docker Buildx
|
|
uses: docker/setup-buildx-action@v2.9.0
|
|
id: buildx
|
|
with:
|
|
install: true
|
|
- name: Build
|
|
run: docker build . # will run buildx
|