diff --git a/.gitea/workflows/build-push.yaml b/.gitea/workflows/build-push.yaml new file mode 100644 index 0000000..fa84f40 --- /dev/null +++ b/.gitea/workflows/build-push.yaml @@ -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 + + + \ No newline at end of file