diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..1a91d4c --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,24 @@ +name: Cloudflare Pages + +on: + push: + branches: + - master + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup Hugo + uses: peaceiris/actions-hugo@v2 + with: + hugo-version: '0.122.0' + + - name: Build + run: hugo --minify + + - name: Deploy to Cloudflare Pages + run: npx --yes wrangler pages deploy --project-name lemniskett-moe ./public --branch main \ No newline at end of file