Skip to content

Instantly share code, notes, and snippets.

View mrzinlinhtet's full-sized avatar

Zin Lin Htet mrzinlinhtet

View GitHub Profile
@mrzinlinhtet
mrzinlinhtet / GithubActionToCreateFileLightsailSrv.yml
Last active October 5, 2025 09:07
Github-Action-to-create-file-LightsailSrv
name: Github Action Lab
on:
workflow_dispatch:
jobs:
file-create:
name: SSH to Lightsail Server and Create File
runs-on: ubuntu-latest
steps:
- name: Execute SSH Command
uses: appleboy/ssh-action@v1
@mrzinlinhtet
mrzinlinhtet / GithubActionToCreateS3Bucket.yml
Created October 5, 2025 07:29
[HOL] Github Action to create S3 bucket
name: Create S3 Bucket
on:
workflow_dispatch:
inputs:
bucketName:
description: "Please type S3 Bucket Name"
required: true
jobs:
create-bucket:
runs-on: ubuntu-latest