forked from NativeScript/NativeScript
-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (27 loc) · 1016 Bytes
/
npm_release.yml
File metadata and controls
35 lines (27 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Release @nativescript/core to NPM
on:
push:
branches: [ 'feat/monorepo' ]
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup
run: npm install
- name: Generate Version
working-directory: packages/core
run: echo ::set-env name=NPM_VERSION::$(node -e "console.log(require('./package.json').version);")--$(date +"%m-%d-%Y-%s")-$GITHUB_RUN_NUMBER
- name: Bump Version
working-directory: packages/core
run: npm version $NPM_VERSION
- name: Build @nativescript/core
run: npx nx run core:build.npm
- name: Publish @nativescript/core
working-directory: dist/packages
env:
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
echo "Publishing @nativescript/core@$NPM_VERSION to NPM..."
npm publish nativescript-core-$NPM_VERSION.tgz --tag ci --dry-run