diff --git a/.forgejo/workflows/build-deploy.yml b/.forgejo/workflows/build-deploy.yml new file mode 100644 index 0000000..e7206fb --- /dev/null +++ b/.forgejo/workflows/build-deploy.yml @@ -0,0 +1,21 @@ +name: Build and Deploy Website + +on: + push: + branches: + - main + - develop + +jobs: + build: + name: Build and Deploy Website + runs-on: docker + container: + image: node:lts + steps: + - name: Install Dependencies + run: npm install + - name: Build English Version + run: npm run build + - name: Build German Version + run: npm run build:de diff --git a/.woodpecker.yml b/.woodpecker.yml.old similarity index 100% rename from .woodpecker.yml rename to .woodpecker.yml.old