This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create S3 Bucket | |
on: | |
workflow_dispatch: | |
inputs: | |
bucketName: | |
description: "Please type S3 Bucket Name" | |
required: true | |
jobs: | |
create-bucket: | |
runs-on: ubuntu-latest |