From d2ee5c706cc22e565380082c897189592db9d301 Mon Sep 17 00:00:00 2001 From: Romane <122701716+rom-vtn@users.noreply.github.com> Date: Tue, 5 May 2026 17:27:05 +0200 Subject: [PATCH] change structure --- .gitea/workflows/test.yaml | 27 --------------------------- scripts/test.sh | 7 ------- 2 files changed, 34 deletions(-) delete mode 100644 .gitea/workflows/test.yaml delete mode 100644 scripts/test.sh diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml deleted file mode 100644 index f0c3d4b..0000000 --- a/.gitea/workflows/test.yaml +++ /dev/null @@ -1,27 +0,0 @@ -name: Run script on commit - -on: - push: {} - -jobs: - run-bash: - runs-on: ubuntu-latest # use the runner label you have - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Make script executable - run: | - chmod +x ./scripts/test.sh - - - name: Run script on current tree - run: | - ./scripts/test.sh - - - uses: https://gitea.com/actions/gitea-upload-artifact@v4 - with: - name: presentation - path: presentation/index.html - diff --git a/scripts/test.sh b/scripts/test.sh deleted file mode 100644 index 05b1850..0000000 --- a/scripts/test.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -set -e - -apt update && apt install -y nodejs - -cd presentation -npx @marp-team/marp-cli@latest presentation.md -o index.html