From ef981b6f315f47f3fa39e15b13474322b4a1ec75 Mon Sep 17 00:00:00 2001 From: Syahrial Agni Prasetya Date: Thu, 15 Feb 2024 17:05:04 +0700 Subject: [PATCH] Add CI --- .gitea/workflows/deploy-cloudflare.yml | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitea/workflows/deploy-cloudflare.yml diff --git a/.gitea/workflows/deploy-cloudflare.yml b/.gitea/workflows/deploy-cloudflare.yml new file mode 100644 index 0000000..642afec --- /dev/null +++ b/.gitea/workflows/deploy-cloudflare.yml @@ -0,0 +1,27 @@ +name: Deploy 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 $CLOUDFLARE_PAGES_PROJECT_NAME ./public --branch main" + env: + CLOUDFLARE_PAGES_PROJECT_NAME: ${{ secrets.CLOUDFLARE_PAGES_PROJECT_NAME }} + CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}