From 7ef9cf2d6c2cef47eeb27badd8990437e8c14c59 Mon Sep 17 00:00:00 2001 From: Evan Luo Date: Sun, 1 Dec 2024 18:45:21 -0500 Subject: [PATCH] ci: update build output paths in GitHub Actions workflow - Change git add command to target new build output directories - Update paths from 'source/build/js' to 'source/js/build' - Update paths from 'source/build/css' to 'source/css/build' --- .github/workflows/build-and-commit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-commit.yml b/.github/workflows/build-and-commit.yml index d4076553..7b82936e 100644 --- a/.github/workflows/build-and-commit.yml +++ b/.github/workflows/build-and-commit.yml @@ -40,7 +40,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - git add source/build/js source/build/css + git add source/js/build source/css/build # Check if there are any changes if ! git diff --cached --quiet; then git commit -m "ci: build and update source/build/js and source/build/css [skip ci]"