chore: rebase before commit bundled web app

This commit is contained in:
Gabe Kangas 2023-08-12 17:48:30 -07:00
parent 003a1dad62
commit 845051c4c2
No known key found for this signature in database
GPG key ID: 4345B2060657F330

View file

@ -155,6 +155,11 @@ jobs:
- name: Bundle web app (next.js build) - name: Bundle web app (next.js build)
run: build/web/bundleWeb.sh run: build/web/bundleWeb.sh
- name: Rebase
if: ${{ github.ref == 'refs/heads/develop' }}
run: |
git pull --rebase --autostash
# Only commit built web project files on develop. # Only commit built web project files on develop.
- name: Commit changes - name: Commit changes
if: ${{ github.ref == 'refs/heads/develop' }} if: ${{ github.ref == 'refs/heads/develop' }}