Some checks failed
Build and Push Docker Image / build (push) Failing after 6m14s
26 lines
612 B
YAML
26 lines
612 B
YAML
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
|
|
|
|
|
|
|