-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add build typescript action. result comes to 'dist' branch
- Loading branch information
Alexey Zorkaltsev
authored and
Alexey Zorkaltsev
committed
Sep 12, 2023
1 parent
b2f6b3e
commit 1c0f9e8
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Build typescrit | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout project | ||
uses: actions/checkout@v3 | ||
- name: Build and push | ||
uses: alexthemaster/[email protected] | ||
with: | ||
pushToBranch: true # optional; can either be true or false | defaults to false | ||
branch: 'dist' # optional; the name of the branch the action should push the compiled code to | defaults to dist | ||
githubToken: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }} # required if you use the pushToBranch option |