Skip to content

Merge branch 'master' of https://github.com/fruithost/Modules #11

Merge branch 'master' of https://github.com/fruithost/Modules

Merge branch 'master' of https://github.com/fruithost/Modules #11

Workflow file for this run

name: Create installable ZIP-Packages of Modules
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
CI_COMMIT_MESSAGE: Build Module-Packages
CI_COMMIT_AUTHOR: fruithost | Modules Builder
steps:
- uses: actions/checkout@v3
# Build steps
- uses: actions/setup-node@v3
with:
node-version: '22'
- name: Node Install
run: cd ./.builder/ && npm install
- name: Node Build
run: cd ./.builder/ && node ./build.js
# Commit and push all changed files.
- name: Commit changes
if: github.event_name == 'push'
run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "[email protected]"
git commit -a -m "${{ env.CI_COMMIT_MESSAGE }}"
git push