We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e64f1db commit a5c84d8Copy full SHA for a5c84d8
.github/workflows/tests.yml
@@ -205,9 +205,10 @@ jobs:
205
cache: 'npm'
206
- run: npx update-browserslist-db@latest
207
- run: yarn
208
- - run: yarn build --no-watch
209
- - name: Upload build artifacts
210
- uses: actions/upload-artifact@v4
211
- with:
212
- path: 'public'
213
- name: gads-build
+ - run: NODE_ENV=production webpack
+ - run: |
+ git config --local user.name "GADS CI"
+ git config --local user.email "[email protected]"
+ git add public
+ git commit -m "Update scripts" || echo "No changes to commit"
214
+ git push || echo "No changes to push"
0 commit comments