From ce4a9ac50121a56270c7a015ece23156ece5526c Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Fri, 26 Dec 2025 13:03:10 +0100 Subject: [PATCH] gitea action --- .gitea/workflows/build-push.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .gitea/workflows/build-push.yaml diff --git a/.gitea/workflows/build-push.yaml b/.gitea/workflows/build-push.yaml new file mode 100644 index 00000000..49da7746 --- /dev/null +++ b/.gitea/workflows/build-push.yaml @@ -0,0 +1,29 @@ +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/pmomusic + image_tags: latest + no_cache: false + version_file: version.txt + check_uuid: 82a30d23-b3bd-4199-9237-776965831d20 + + + \ No newline at end of file