Skip to content

Commit

Permalink
ci: update build output paths in GitHub Actions workflow
Browse files Browse the repository at this point in the history
- 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'
  • Loading branch information
EvanNotFound committed Dec 1, 2024
1 parent 73d1956 commit 7ef9cf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]"
Expand Down

0 comments on commit 7ef9cf2

Please sign in to comment.