Skip to content

Commit

Permalink
Merge pull request #2 from ErenKrt/development
Browse files Browse the repository at this point in the history
New core
  • Loading branch information
ErenKrt authored Nov 20, 2023
2 parents 117c198 + ac12dec commit dc02b96
Show file tree
Hide file tree
Showing 15 changed files with 62,337 additions and 34,849 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/main.yml

This file was deleted.

41 changes: 35 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
Expand Down Expand Up @@ -41,8 +42,8 @@ build/Release
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo
Expand All @@ -53,6 +54,9 @@ typings/
# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
Expand All @@ -68,29 +72,40 @@ typings/
# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
# dotenv environment variable files
.env
.env.test
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
*.exe

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

Expand All @@ -102,3 +117,17 @@ typings/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

coverage
*.exe
*.node
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

34 changes: 14 additions & 20 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,39 +6,33 @@ branding:
color: 'gray-dark'

inputs:
HOST:
host:
description: 'IP Address of remote host'
required: true
PORT:
port:
description: 'Port of SSH Protocol'
required: true
required: false
default: 22
USERNAME:
username:
description: 'Username of SSH user'
required: true
PRIVATE_KEY:
description: 'SSH Private Key'
password:
description: 'Password of user'
required: true
SOURCE:
description: 'Folder to be transferred'
required: false
EXCLUDE:
description: 'Exlude paths or file in source folder with glob features'
required: false
ZIPNAME:
description: 'Using zip for stability at transfer, file name of zip'
required: false
default: 'build.zip'
OUTDIR:
description: 'Remote host path to copy zip'
required: false
SCRIPTS:
source:
description: 'Folder/File to be transferred'
required: true
destination:
description: 'Destination of source archive file'
required: true
scripts:
description: 'Execute commands after transfer source file'
required: false

outputs:
status:
description: 'Status'

runs:
using: 'node16'
main: 'dist/index.js'
Loading

0 comments on commit dc02b96

Please sign in to comment.