Skip to content

Commit

Permalink
chore: push first working version
Browse files Browse the repository at this point in the history
  • Loading branch information
alexthemaster committed Jan 4, 2021
1 parent 82a3f94 commit 48a73ae
Show file tree
Hide file tree
Showing 399 changed files with 148,964 additions and 0 deletions.
21 changes: 21 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: 'TypeScript Build'
description: 'Build TypeScript code and optionally push the compiled code to a different branch'
author: 'Kovacs Alex'
inputs:
pushToBranch:
description: 'Whether or not to push the compiled code to a different branch'
required: false
default: false
branch:
description: 'The name of the branch the action should push the compiled code'
required: false
default: 'dist'
author:
description: 'The author to use for commits'
required: false
githubToken:
description: 'Your GitHub secret token (hint: use ${{ secrets.GITHUB_TOKEN }} )'
required: false
runs:
using: 'node12'
main: src/main.js
205 changes: 205 additions & 0 deletions node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions node_modules/@actions/core/LICENSE.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

147 changes: 147 additions & 0 deletions node_modules/@actions/core/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 48a73ae

Please sign in to comment.