From e56837478e66d7c9587872e8ace806399a1b1f11 Mon Sep 17 00:00:00 2001 From: Jeremy Huard Date: Tue, 7 Apr 2026 01:18:21 +0200 Subject: [PATCH 1/2] correct actions versions --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ae73bf..d93c8f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -110,7 +110,7 @@ jobs: # Upload testing and code coverage reports to your repository - name: Upload pages if: always() - uses: actions/upload-pages-artifact@v6 + uses: actions/upload-pages-artifact@v4 with: path: results # Upload results @@ -125,7 +125,7 @@ jobs: - name: Deploy to GitHub Pages id: deployment if: always() - uses: actions/deploy-pages@v6 + uses: actions/deploy-pages@v4 # ==================================== # From 25c1e68673ec8a93953f1f0684a88cce685d6c5b Mon Sep 17 00:00:00 2001 From: Jeremy Huard Date: Tue, 7 Apr 2026 01:19:44 +0200 Subject: [PATCH 2/2] removed compilation --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d93c8f9..a5d36da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -100,7 +100,7 @@ jobs: - name: Run buildtool uses: matlab-actions/run-build@v3 with: - tasks: compile # change to compile + tasks: test # change to compile # Configure GitHub Pages to accept your artifact uploads - name: Setup Pages @@ -114,12 +114,12 @@ jobs: with: path: results # Upload results - # Upload compiled CTF file to deploy Web App - - name: Upload CTF file - uses: actions/upload-artifact@v6 - with: - name: WebApp_CTF - path: WebAppArchive/*.ctf + # # Upload compiled CTF file to deploy Web App + # - name: Upload CTF file + # uses: actions/upload-artifact@v6 + # with: + # name: WebApp_CTF + # path: WebAppArchive/*.ctf # Publish reports to GitHub Pages so they can be viewed in a browser - name: Deploy to GitHub Pages