diff --git a/.forgejo/workflows/build-deploy.yaml b/.forgejo/workflows/build-deploy.yaml new file mode 100644 index 0000000..7fa9ac0 --- /dev/null +++ b/.forgejo/workflows/build-deploy.yaml @@ -0,0 +1,20 @@ +name: Build and deploy website +on: + push: + branches: + - main + +jobs: + build: + runs-on: docker + container: + image: registry.access.redhat.com/ubi9/nodejs-20:1-34 + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Install dependencies + run: npm install + + - name: Build site + run: npm run build \ No newline at end of file