From d4ad07daf10a67d3c725c1f5c2863c17b015ff00 Mon Sep 17 00:00:00 2001 From: mirnawong1 Date: Mon, 17 Jun 2024 09:43:42 +0100 Subject: [PATCH] add --- .github/workflows/vale.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/vale.yml b/.github/workflows/vale.yml index 3a23164c659..87b0d543bdd 100644 --- a/.github/workflows/vale.yml +++ b/.github/workflows/vale.yml @@ -6,7 +6,7 @@ on: - '**/*.md' jobs: - vale: + vale: runs-on: ubuntu-latest steps: @@ -59,19 +59,31 @@ jobs: env: REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.REVIEWDOG_GITHUB_API_TOKEN }} + - name: Verify original files + run: | + echo "Verifying original files:" + ls -l original_files + + - name: Verify corrected files + run: | + echo "Verifying corrected files:" + ls -l corrected_files + - name: Upload original files uses: actions/upload-artifact@v3 with: name: original-files path: original_files/ + continue-on-error: true - name: Upload corrected files uses: actions/upload-artifact@v3 with: name: corrected-files path: corrected_files/ + continue-on-error: true - suggest: + suggest: runs-on: ubuntu-latest needs: vale