From f0db774869e2709fa6762caf2583ea423bcd5ca5 Mon Sep 17 00:00:00 2001 From: TheDreWen Date: Tue, 3 Feb 2026 09:26:07 +0100 Subject: [PATCH] Remove Hugo deployment workflow and add Gitea deployment workflow --- .gitea/workflows/deploy.yml | 0 .github/workflows/hugo.yml | 54 ------------------------------------- 2 files changed, 54 deletions(-) create mode 100644 .gitea/workflows/deploy.yml delete mode 100644 .github/workflows/hugo.yml diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..e69de29 diff --git a/.github/workflows/hugo.yml b/.github/workflows/hugo.yml deleted file mode 100644 index a888734..0000000 --- a/.github/workflows/hugo.yml +++ /dev/null @@ -1,54 +0,0 @@ -name: Deploy Hugo site to Pages - -on: - push: - branches: ["master"] - workflow_dispatch: - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: "pages" - cancel-in-progress: false - -defaults: - run: - shell: bash - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - submodules: recursive - fetch-depth: 0 - - - name: Setup Hugo - uses: peaceiris/actions-hugo@v3 - with: - hugo-version: 'latest' - extended: true - - - name: Build - run: hugo --minify - - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - path: ./public - - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - needs: build - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4