Files
xmlrpcserver/.gitea/workflows/build.yaml
Ivan Vazhenin 201b2d2da6
All checks were successful
Build xmlrpcserver image / Build (push) Successful in 57s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
Add build action
2024-02-25 16:14:37 +03:00

23 lines
657 B
YAML

name: Build xmlrpcserver image
run-name: Build xmlrpcserver image
on: [push]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: https://github.com/actions/checkout@v4
- name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v3
with:
config-inline: |
[registry."10.10.8.83:32000"]
http = true
insecure = true
- name: Build and push Docker image
uses: https://github.com/docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: "10.10.8.83:32000/xmlrpc:latest"