From 9c67eebe07e18abcbcc0b1512ec99782dfbbd8e9 Mon Sep 17 00:00:00 2001 From: Thibaut Lunet Date: Sat, 1 Nov 2025 10:27:09 +0100 Subject: [PATCH 1/5] TL: small modification for testing --- .github/workflows/build.yml | 2 +- admin/postes/president.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b1b3c57..0e877f7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 2.7 # ou la version de Ruby que vous utilisez + ruby-version: 3.4 - name: Install Jekyll and dependencies run: | diff --git a/admin/postes/president.md b/admin/postes/president.md index 9553d4e..14af283 100644 --- a/admin/postes/president.md +++ b/admin/postes/president.md @@ -3,8 +3,8 @@ layout: post title: "Président" author: service-informatique rank: 0 -summary: Description du rôle de président de la CSSB +summary: Description du rôle de président de la CSSB icon: uil-clipboard-alt --- -:hammer_and_wrench: En construction \ No newline at end of file +:hammer_and_wrench: En construction ... \ No newline at end of file From 0198cff9dcf7dbb642069bfa64c02de03eb91476 Mon Sep 17 00:00:00 2001 From: Thibaut Lunet Date: Sun, 2 Nov 2025 09:50:06 +0100 Subject: [PATCH 2/5] TL: trying stuff --- .github/workflows/build.yml | 17 ++++++++--------- .github/workflows/jekyll.yml | 2 +- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0e877f7..09b8bf2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,17 +16,16 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.4 + ruby-version: 3.0 + bundler-cache: true - - name: Install Jekyll and dependencies - run: | - gem install bundler - bundle install - working-directory: ./ + - name: Setup Pages + id: pages + uses: actions/configure-pages@v4 - - name: Build Site - run: bundle exec jekyll build - working-directory: ./ + - name: Build with Jekyll + # Outputs to the './_site' directory by default + run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" - name: Archive Build uses: actions/upload-pages-artifact@v3 diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 926ff89..7e184e3 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -38,7 +38,7 @@ jobs: - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 2.7 # Not needed with a .ruby-version file + ruby-version: 3.0 # Not needed with a .ruby-version file bundler-cache: true # runs 'bundle install' and caches installed gems automatically cache-version: 0 # Increment this number if you need to re-download cached gems - name: Setup Pages From f6fe190205f6e571c56aab8094851aaac9fc46ba Mon Sep 17 00:00:00 2001 From: Thibaut Lunet Date: Sun, 2 Nov 2025 09:54:27 +0100 Subject: [PATCH 3/5] TL: yet another test --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 09b8bf2..ab22f6a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: 3.0 - bundler-cache: true + bundler-cache: false - name: Setup Pages id: pages From 1b44175a59cce16aa4ffd06d1a9c2701c1539211 Mon Sep 17 00:00:00 2001 From: Thibaut Lunet Date: Sun, 2 Nov 2025 10:01:54 +0100 Subject: [PATCH 4/5] TL: again ... --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ab22f6a..1f6b615 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,8 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: 3.0 - bundler-cache: false + bundler-cache: true + cache-version: 0 - name: Setup Pages id: pages From ed7fb8feba93ef534aef88fc1ded908dd66b1b03 Mon Sep 17 00:00:00 2001 From: Thibaut Lunet Date: Sun, 2 Nov 2025 10:03:51 +0100 Subject: [PATCH 5/5] TL: another one --- .github/workflows/build.yml | 4 ++-- .github/workflows/jekyll.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1f6b615..c231499 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,9 +16,9 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.0 + ruby-version: 2.7 bundler-cache: true - cache-version: 0 + cache-version: 1 - name: Setup Pages id: pages diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 7e184e3..926ff89 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -38,7 +38,7 @@ jobs: - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.0 # Not needed with a .ruby-version file + ruby-version: 2.7 # Not needed with a .ruby-version file bundler-cache: true # runs 'bundle install' and caches installed gems automatically cache-version: 0 # Increment this number if you need to re-download cached gems - name: Setup Pages