Ajouter .gitea/workflows/build-push.yaml
Some checks failed
Build and Push Docker Image / build (push) Failing after 6m14s
Some checks failed
Build and Push Docker Image / build (push) Failing after 6m14s
This commit is contained in:
26
.gitea/workflows/build-push.yaml
Normal file
26
.gitea/workflows/build-push.yaml
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
name: Build and Push Docker Image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main # Changez cela si votre branche principale a un autre nom
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Setup cache
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: ~/.npm
|
||||||
|
key: dont-cache-${{ github.run_id }}
|
||||||
|
- name: Build and push image
|
||||||
|
uses: https://gargoton.petite-maison-orange.fr/pmo-actions/build-push-image@main
|
||||||
|
with:
|
||||||
|
image_name: public/citools-podmanx
|
||||||
|
image_tags: latest
|
||||||
|
check_uuid: 5a38e19b-4aff-4389-9056-a48060dd18cb
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user