From ba387214c98885a19b1ad0be084d2f50793d887d Mon Sep 17 00:00:00 2001 From: Tomas Vavra Date: Fri, 16 Feb 2024 21:34:55 +0100 Subject: [PATCH] Added github actions for web_build --- .github/workflows/web_build.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/web_build.yml diff --git a/.github/workflows/web_build.yml b/.github/workflows/web_build.yml new file mode 100644 index 0000000..bc9ba04 --- /dev/null +++ b/.github/workflows/web_build.yml @@ -0,0 +1,15 @@ +### +name: Automatic web build + +on: + push: + branches: + - master +jobs: + build_web_site: + runs-on: [ web-builder-22.04 ] + steps: + - name: Build_web + run: /scripts/build_web.sh + +