Skip to content

Commit

Permalink
Initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
IniZio committed Oct 18, 2024
0 parents commit 3c0546b
Show file tree
Hide file tree
Showing 11 changed files with 41,817 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `deploy-key` Github Action

> A Github Action to add a deploy key to a repository
14 changes: 14 additions & 0 deletions action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: 'Deploy Key'
description: 'Add deploy key for external repos, useful for cloning submodules'
runs:
using: 'node20'
main: 'dist/action.js'
post: 'dist/cleanup.js'
post-if: "success()"
inputs:
ssh-private-key:
description: 'Deploy key'
required: true
repo:
description: 'Github repository'
required: true
Loading

0 comments on commit 3c0546b

Please sign in to comment.