Skip to content

Instantly share code, notes, and snippets.

View kalilinux-png's full-sized avatar
🪽
Focusing

Shubham Yadav kalilinux-png

🪽
Focusing
View GitHub Profile
@kalilinux-png
kalilinux-png / gitAutomation.sh
Last active September 9, 2024 12:50
This is a script for automating the creation of a GitHub repository.
#!/bin/bash
# ------------------------------------------------------------------
# Script to initialize a new project with essential files and GitHub setup.
# Author: Shubham Yadav
# Date: Keep's On Changing
# Description: This script sets up a new project repository with necessary files and GitHub integration.
# ------------------------------------------------------------------
echo "Welcome to the project initialization script!"
@kalilinux-png
kalilinux-png / deploy.yml
Last active December 11, 2023 06:02
Deploy React Website
on: push
name: Deploy To Production Server
jobs:
web-deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
@kalilinux-png
kalilinux-png / deploy.yml
Created December 10, 2023 13:15
Github Actions FTP
on: push
name: Deploy To Production Server
jobs:
web-deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
# uncommnet this if you want to build your site before deploying