From f5e4f8a4bd3437cfdd498b2c28ed93df7ff58c48 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Tue, 20 Dec 2022 12:19:33 -0800 Subject: [PATCH] Transition off of GitHub pages --- .github/workflows/gh-pages.yml | 37 ---------------------------------- .gitignore | 1 + .gitmodules | 2 +- build.sh | 4 ++++ public/CNAME | 1 - 5 files changed, 6 insertions(+), 39 deletions(-) delete mode 100644 .github/workflows/gh-pages.yml create mode 100755 build.sh delete mode 100644 public/CNAME diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml deleted file mode 100644 index c544314..0000000 --- a/.github/workflows/gh-pages.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: GitHub Pages - -on: - push: - branches: - - main # Set a branch to deploy - pull_request: - -jobs: - deploy: - runs-on: ubuntu-latest - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - steps: - - uses: actions/checkout@v3 - with: - submodules: true # Fetch Hugo themes (true OR recursive) - fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 - with: - hugo-version: 'latest' - # extended: true - - - name: Build - run: hugo --minify - - - name: Stork Index - run: ./stork_index.sh - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - if: ${{ github.ref == 'refs/heads/main' }} - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./public diff --git a/.gitignore b/.gitignore index 45bc79f..e33c5da 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ hugo_stats.json /.hugo_build.lock *.xcf +stork-ubuntu-20-04-1.5.0 diff --git a/.gitmodules b/.gitmodules index 01d0dbb..9958036 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "themes/sakura-hugo-theme"] path = themes/sakura-hugo-theme - url = git@github.com:ElnuDev/sakura-hugo-theme.git + url = https://git.elnu.com/ElnuDev/sakura-hugo-theme.git diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..75ca446 --- /dev/null +++ b/build.sh @@ -0,0 +1,4 @@ +#!/bin/bash +hugo +./stork_index.sh +find public -name '*.html' -type f -exec tidy --quiet yes --drop-empty-elements no --hide-comments yes -mq '{}' \; &> /dev/null diff --git a/public/CNAME b/public/CNAME deleted file mode 100644 index 6301231..0000000 --- a/public/CNAME +++ /dev/null @@ -1 +0,0 @@ -blog.elnu.com