Skip to content

Commit

Permalink
averrr
Browse files Browse the repository at this point in the history
  • Loading branch information
yomero243 committed Dec 4, 2024
1 parent 1036ebc commit 96244d7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/npm-gulp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v4
Expand All @@ -26,3 +26,11 @@ jobs:
run: |
npm install
gulp
- name: Commit built assets
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add css/* js/*
git commit -m "Build assets" || echo "No changes to commit"
git push || echo "No changes to push"
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,5 @@ typings/
.env
.sass-cache/
*.css.map
css/styles.min.css
js/scripts.min.js

0 comments on commit 96244d7

Please sign in to comment.