clean install

This commit is contained in:
2024-12-10 15:08:16 +01:00
commit e14eb2d8fd
31193 changed files with 3555714 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
name: Trigger Netlify to build docs
on:
push:
branches:
- '3.x'
paths:
- 'docs/**'
jobs:
build:
runs-on: ubuntu-latest
env:
TOKEN: ${{ secrets.NETLIFY_BUILD_HOOK }}
steps:
- name: Set trigger_title environment variable
run: |
echo "TRIGGER_TITLE=Triggered+by+farmOS+source+repo" >> $GITHUB_ENV
- name: Set trigger_branch env.var for main production build
run: |
echo "TRIGGER_BRANCH=main" >> $GITHUB_ENV
- name: Trigger Netlify Build Hook
run: curl -s -X POST -d {} "https://api.netlify.com/build_hooks/${TOKEN}?trigger_branch=${TRIGGER_BRANCH}&trigger_title=${TRIGGER_TITLE}"
if: ${{ env.TOKEN != '' }}