Skip to content

Commit

Permalink
test make web
Browse files Browse the repository at this point in the history
  • Loading branch information
SciLor committed May 15, 2024
1 parent 61ce415 commit a007786
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build_commit_web.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Make web and commit

on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Make Web
run: make web

- name: Configure Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "SciLor"
- name: Git status tonies-ota-backup
run: |
git status
- name: Commit and push if changed tonies-ota-backup
run: |
if [[ -n $(git status --porcelain) ]]; then
git add .
git commit -m "Update webinterface"
git pull --rebase
else
echo "No changes to commit and push."
fi

0 comments on commit a007786

Please sign in to comment.