Skip to content

Instantly share code, notes, and snippets.

View alfanzain's full-sized avatar
🏠
Working from home

Alfan Zain Putra alfanzain

🏠
Working from home
View GitHub Profile
@alfanzain
alfanzain / deploy_on_push.yml
Created June 22, 2025 03:35
Github Action Deploy on Push
name: Deploy Staging
# Trigger the workflow on every push to the 'main' branch
on:
push:
branches: [main]
jobs:
deploy:
# This job runs on the latest Ubuntu virtual machine provided by GitHub
@alfanzain
alfanzain / PSQL_CHEATSHEET.md
Last active August 14, 2024 18:59
Postgres Cheatsheet

See structure of table:

\d users;