Skip to content

Commit

Permalink
chore: add build typescript action. result comes to 'dist' branch
Browse files Browse the repository at this point in the history
  • 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.
17 changes: 17 additions & 0 deletions .github/workflows/build-typescript.yml
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

0 comments on commit 1c0f9e8

Please sign in to comment.