Skip to content

Make web and commit #18

Make web and commit

Make web and commit #18

name: Make web and commit
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
# - name: Update teddycloud_web submodule
# run: git submodule update --remote teddycloud_web
- name: Git status
run: |
git status
cd teddycloud_web
git status
cd ..
- uses: actions/setup-node@v4
with:
node-version: "20.11.1"
- name: Install NPM version
run: npm install -g [email protected]
- name: Disable CI checks
run: echo "CI=false" >> $GITHUB_ENV
- name: Make Web
run: make web
- name: Configure Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "SciLor"
- name: Commit and push if changed
run: |
if [[ -n $(git status --porcelain) ]]; then
git add .
git commit -m "Update frontend (make web)"
git pull --rebase
git push
else
echo "No changes to commit and push."
fi