diff options
author | Christian Cleberg <hello@cleberg.net> | 2025-04-30 22:24:42 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2025-04-30 22:24:42 -0500 |
commit | 9f2643bd5789e9d4f65b1605f7a08bd71f5fe4b7 (patch) | |
tree | 8d176b6de9a1f07db64954266e3d419571767aa3 | |
parent | 53946582d214d3cf559f6db4ef6af1ee44aec39a (diff) | |
download | cleberg.net-9f2643bd5789e9d4f65b1605f7a08bd71f5fe4b7.tar.gz cleberg.net-9f2643bd5789e9d4f65b1605f7a08bd71f5fe4b7.tar.bz2 cleberg.net-9f2643bd5789e9d4f65b1605f7a08bd71f5fe4b7.zip |
remove github actions and hooks
-rw-r--r-- | .github/FUNDING.yml | 15 | ||||
-rw-r--r-- | .github/workflows/ruff.yml | 37 | ||||
-rwxr-xr-x | install-hooks.sh | 4 | ||||
-rw-r--r-- | utils/hooks/post-checkout | 3 | ||||
-rw-r--r-- | utils/hooks/post-commit | 16 | ||||
-rw-r--r-- | utils/hooks/post-push | 29 |
6 files changed, 0 insertions, 104 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 62082dc..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,15 +0,0 @@ -# These are supported funding model platforms - -github: [ccleberg] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] -# patreon: # Replace with a single Patreon username -# open_collective: # Replace with a single Open Collective username -# ko_fi: # Replace with a single Ko-fi username -# tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -# community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -# liberapay: # Replace with a single Liberapay username -# issuehunt: # Replace with a single IssueHunt username -# lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry -# polar: # Replace with a single Polar username -# buy_me_a_coffee: # Replace with a single Buy Me a Coffee username -# thanks_dev: # Replace with a single thanks.dev username -# custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml deleted file mode 100644 index 2cefea1..0000000 --- a/.github/workflows/ruff.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Ruff - -on: - push: - paths: - - '**.py' - -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.x"] - steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - ref: ${{ github.event.pull_request.head.ref }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install pandas plotly - - name: Install Ruff - uses: astral-sh/ruff-action@v3.2.2 - - name: Ruff Actions - run: | - ruff check --fix - ruff format - - name: Add and Commit - uses: EndBug/add-and-commit@v9 - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - default_author: github_actions - pathspec_error_handling: ignore diff --git a/install-hooks.sh b/install-hooks.sh deleted file mode 100755 index c5e196a..0000000 --- a/install-hooks.sh +++ /dev/null @@ -1,4 +0,0 @@ -# install-hooks.sh -#!/bin/bash -cp utils/hooks/* .git/hooks/ -chmod +x .git/hooks/* diff --git a/utils/hooks/post-checkout b/utils/hooks/post-checkout deleted file mode 100644 index 811a483..0000000 --- a/utils/hooks/post-checkout +++ /dev/null @@ -1,3 +0,0 @@ -# .git/hooks/post-checkout -#!/bin/bash -echo "You're now on branch $(git rev-parse --abbrev-ref HEAD)" diff --git a/utils/hooks/post-commit b/utils/hooks/post-commit deleted file mode 100644 index 3064dc6..0000000 --- a/utils/hooks/post-commit +++ /dev/null @@ -1,16 +0,0 @@ -# .git/hooks/post-commit -#!/bin/bash -echo "Environment: Development" - -# Remove previous build -rm -rf .build/* - -# Run publishing script -emacs --script publish.el - -# Minify CSS -minify -o theme/static/styles.min.css theme/static/styles.css - -# Launch development web server -cd .build/ -python3 -m http.server diff --git a/utils/hooks/post-push b/utils/hooks/post-push deleted file mode 100644 index 4193037..0000000 --- a/utils/hooks/post-push +++ /dev/null @@ -1,29 +0,0 @@ -# .git/hooks/post-push -#!/bin/bash -echo "Environment: Production" - -# Check if publishing via LAN or remotely -printf "Publishing on remote or LAN? [r|l] " - -# Update ubuntu_server variable based on answer -read method -if [[ "$method" =~ ^[Rr]$ ]]; then - ubuntu_server="ubuntu-remote" -elif [[ "$method" =~ ^[Ll]$ ]]; then - ubuntu_server="ubuntu" -else - echo "Invalid input. Assuming LAN (ubuntu)" - ubuntu_server="ubuntu" -fi - -# Remove previous build -rm -rf .build/* - -# Run publishing script -emacs --script publish.el &>/dev/null - -# Minify CSS -minify -o theme/static/styles.min.css theme/static/styles.css - -# Deploy changes -rsync -r --delete-before .build/* $ubuntu_server:/var/www/cleberg.net/ |