From 855e436235aea2564e653ece0fa77168ae3ad2ab Mon Sep 17 00:00:00 2001 From: Sebastien Larinier Date: Wed, 30 Oct 2024 16:46:08 +0100 Subject: [PATCH] refactoring ci/cd --- .github/workflows/docker-image.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/docker-image.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml deleted file mode 100644 index 01179d8..0000000 --- a/.github/workflows/docker-image.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Docker Image CI - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - # Initialisez les sous-modules et mettez-les à jour récursivement - submodules: 'recursive' - - - name: Build Hugo site - uses: docker://klakegg/hugo # Remplacez par la version de Hugo que vous souhaitez utiliser - with: - args: "--minify --destination public" - - - name: Archive Production Artifact - uses: actions/upload-artifact@v4 - with: - name: hugo-site - path: public/