Z̜̹̱̹̙̻͚̯̺̳̒̃̃̌̐̆̅́̔͋́̕ą̱͖̘̳̻̻̭̓̿̒͂̆̌͋͆̌́̔̈́̊ļ̛̖̖̻͍̗̼͔̹̪̦͎̩̊̽̾̋̏̏̃͢ģ̵̢̡̠̼̱̰̭̝̄̒́͊́̀̂͌͆͝ö̷̰̙͍̦͕̯̱̭̝͖̼̑̀̔̀̅͜͡ text generation. Mirror of https://github.com/spenserblack/zal-go spenserblack.github.io/zal-go/
golang zalgo
0

Configure Feed

Select the types of activity you want to include in your feed.

Add release script

authored by

Spenser Black and committed by
GitHub
(May 19, 2026, 7:12 PM UTC) cfaa5aa0 4e6b72d5

+20
+3
.devcontainer/devcontainer.json
··· 1 1 { 2 2 "name": "Go", 3 3 "image": "mcr.microsoft.com/vscode/devcontainers/go:1", 4 + "features": { 5 + "ghcr.io/devcontainers/features/github-cli:1": {} 6 + }, 4 7 "customizations": { 5 8 "vscode": { 6 9 "extensions": [
+17
_scripts/release.sh
··· 1 + #!/bin/sh 2 + SCRIPT_DIR="$(dirname "$0")" 3 + BASE_DIR="$(dirname "$SCRIPT_DIR")" 4 + DIST_DIR="$BASE_DIR/dist" 5 + if ! command -v gh > /dev/null 2>&1; then 6 + echo "GitHub CLI (gh) required" >&2 7 + exit 1 8 + fi 9 + 10 + # NOTE: Ensure that assets are built 11 + # NOTE: Does not ensure that the `dist/` directory is clean. It may contain outdated 12 + # assets from an old build. 13 + echo "Running build script..." 14 + "$SCRIPT_DIR/build.sh" 15 + 16 + echo "Creating draft release..." 17 + gh release create --draft --generate-notes "v0.0.0" "$DIST_DIR/*.tar.gz"