From 386d7f7ed69c09562783d5c285ef29ad059a9710 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9drix?= Date: Sun, 8 Mar 2026 08:18:15 +0100 Subject: [PATCH] error --- gitea/workflows/generate-hash.yaml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 gitea/workflows/generate-hash.yaml diff --git a/gitea/workflows/generate-hash.yaml b/gitea/workflows/generate-hash.yaml deleted file mode 100644 index e11fc76..0000000 --- a/gitea/workflows/generate-hash.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: Generate SHA256 Hashes -on: [push] - -jobs: - hash: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Generate Hashes - run: | - # On boucle sur tous les fichiers .sh dans le dossier spécifique - cd servers/linux/ - for file in *.sh; do - sha256sum "$file" > "${file}.sha256" - done - - - name: Commit and Push - run: | - git config --global user.name "Gitea Action" - git config --global user.email "actions@noreply.gitea.io" - git add servers/linux/*.sha256 - git diff --quiet && git diff --staged --quiet || git commit -m "Auto-update SHA256 hashes" - git push \ No newline at end of file