Skip to content

Commit 48a73ae

Browse files
committed
chore: push first working version
1 parent 82a3f94 commit 48a73ae

File tree

399 files changed

+148964
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

399 files changed

+148964
-0
lines changed

action.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: 'TypeScript Build'
2+
description: 'Build TypeScript code and optionally push the compiled code to a different branch'
3+
author: 'Kovacs Alex'
4+
inputs:
5+
pushToBranch:
6+
description: 'Whether or not to push the compiled code to a different branch'
7+
required: false
8+
default: false
9+
branch:
10+
description: 'The name of the branch the action should push the compiled code'
11+
required: false
12+
default: 'dist'
13+
author:
14+
description: 'The author to use for commits'
15+
required: false
16+
githubToken:
17+
description: 'Your GitHub secret token (hint: use ${{ secrets.GITHUB_TOKEN }} )'
18+
required: false
19+
runs:
20+
using: 'node12'
21+
main: src/main.js

node_modules/.package-lock.json

Lines changed: 205 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/LICENSE.md

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/README.md

Lines changed: 147 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)