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:
parent
5bbbd5e35a
commit
f7db3d093c
7 changed files with 118 additions and 5 deletions
16
workflows/publish.yaml
Normal file
16
workflows/publish.yaml
Normal 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 }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue