Some checks failed
Workflow de prueba / Build and push images (push) Failing after 11m53s
29 lines
519 B
YAML
29 lines
519 B
YAML
name: Workflow de prueba
|
|
|
|
on:
|
|
- push
|
|
|
|
jobs:
|
|
Build and push images:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Setup Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
driver-opts: network=host
|
|
|
|
- name: Build
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: beyondcx/beyondcx:latest
|
|
|
|
|