1
0
Fork 0
mirror of https://github.com/archtechx/alpine-typescript.git synced 2025-12-12 14:54:03 +00:00

tsc build

This commit is contained in:
Samuel Štancl 2021-02-26 16:29:55 +01:00
parent 5bbbd5e35a
commit f7db3d093c
7 changed files with 118 additions and 5 deletions

16
workflows/publish.yaml Normal file
View file

@ -0,0 +1,16 @@
name: Publish Node.js package
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm install
- uses: actions/setup-node@v1
with:
registry-url: 'https://npm.pkg.github.com'
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}