- Add GitHub Actions workflow using peaceiris/actions-gh-pages - Update README.org badge and documentation to reference GitHub Actions - Simplify compile.sh for local use (removes Travis-specific evm setup) - Mark deploy.sh as deprecated (workflow handles deployment now) - Remove deploy_key.enc (no longer needed, uses GITHUB_TOKEN) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
439 B
Bash
Executable File
12 lines
439 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# DEPRECATED: This script was used for Travis CI deployments.
|
|
# Deployment is now handled by GitHub Actions (.github/workflows/gh-pages.yml)
|
|
#
|
|
# This script is kept for reference only.
|
|
# See: https://github.com/IvanMalison/dotfiles/blob/master/.github/workflows/gh-pages.yml
|
|
|
|
echo "ERROR: This script is deprecated."
|
|
echo "Deployment is now handled by GitHub Actions."
|
|
echo "See: .github/workflows/gh-pages.yml"
|
|
exit 1
|