From 763aef5c82255610b0a9afbacf158c3440a2792e Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Sat, 11 Jan 2025 10:34:33 -0500 Subject: [PATCH] Fix restylers-docs naming --- .github/workflows/ci.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55de7b6a..43017197 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -161,13 +161,17 @@ jobs: - uses: actions/download-artifact@v4 with: {name: tools} + - uses: actions/download-artifact@v4 with: {name: manifest} - - run: "chmod +x ./restylers-docs" - - run: | + + - name: Update and commit _docs + run: | + chmod +x ./restylers-docs + mkdir -p _docs - ./restyler-docs restylers.yaml > _docs/restylers.md - - run: | + ./restylers-docs restylers.yaml > _docs/restylers.md + git config user.name "github-actions[bot]" git config user.email "commits@restyled.io"