mirror of
https://github.com/ublue-os/forge.git
synced 2025-04-21 22:13:45 +03:00
18 lines
433 B
YAML
18 lines
433 B
YAML
![]() |
---
|
||
|
- name: Build project
|
||
|
hosts: host.ublue.local
|
||
|
gather_facts: true
|
||
|
tasks:
|
||
|
- name: Build and push an image to registry
|
||
|
containers.podman.podman_image:
|
||
|
name: bluefin
|
||
|
tag: latest
|
||
|
path: "{{ forge_git_repository_destination }}"
|
||
|
build:
|
||
|
file: Containerfile
|
||
|
format: oci
|
||
|
pull: false
|
||
|
push: true
|
||
|
push_args:
|
||
|
dest: "{{ forge_registry_url }}"
|