mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
ci: add workflows for different packages
This commit is contained in:
@@ -3,6 +3,8 @@ name: '@nativescript/core -> npm'
|
||||
on:
|
||||
push:
|
||||
branches: [ 'master' ]
|
||||
paths:
|
||||
- 'packages/core/*'
|
||||
|
||||
env:
|
||||
NPM_TAG: 'next'
|
||||
@@ -26,6 +28,7 @@ jobs:
|
||||
working-directory: packages/core
|
||||
run: npm version $NPM_VERSION
|
||||
|
||||
# TODO: build ui-mobile-base first
|
||||
- name: Build @nativescript/core
|
||||
run: npx nx run core:build
|
||||
|
||||
42
.github/workflows/npm_release_types.yml
vendored
Normal file
42
.github/workflows/npm_release_types.yml
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
# TODO: modify to build android & ios types first and then merge into types
|
||||
#name: '@nativescript/types -> npm'
|
||||
#
|
||||
#on:
|
||||
# push:
|
||||
# branches: [ 'master' ]
|
||||
# paths:
|
||||
# - 'packages/types/*'
|
||||
#
|
||||
#env:
|
||||
# NPM_TAG: 'next'
|
||||
#
|
||||
#jobs:
|
||||
# release:
|
||||
# runs-on: ubuntu-latest
|
||||
#
|
||||
# steps:
|
||||
# - uses: actions/checkout@v2
|
||||
#
|
||||
# - name: Setup
|
||||
# run: npm install
|
||||
#
|
||||
# - name: Generate Version
|
||||
# working-directory: packages/types
|
||||
# run: |
|
||||
# echo NPM_VERSION=$(node -e "console.log(require('./package.json').version);")-$NPM_TAG-$(date +"%m-%d-%Y")-$GITHUB_RUN_ID >> $GITHUB_ENV
|
||||
#
|
||||
# - name: Bump Version
|
||||
# working-directory: packages/types
|
||||
# run: npm version $NPM_VERSION
|
||||
#
|
||||
# - name: Build @nativescript/types
|
||||
# run: npx nx run core:build
|
||||
#
|
||||
# - name: Publish @nativescript/types
|
||||
# working-directory: dist/packages
|
||||
# env:
|
||||
# NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
|
||||
# run: |
|
||||
# echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ../../.npmrc
|
||||
# echo "Publishing @nativescript/types@$NPM_VERSION to NPM with tag $NPM_TAG..."
|
||||
# npm publish nativescript-types-$NPM_VERSION.tgz --tag $NPM_TAG
|
||||
41
.github/workflows/npm_release_webpack.yml
vendored
Normal file
41
.github/workflows/npm_release_webpack.yml
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
name: '@nativescript/webpack -> npm'
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ 'master' ]
|
||||
paths:
|
||||
- 'packages/webpack/*'
|
||||
|
||||
env:
|
||||
NPM_TAG: 'next'
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Setup
|
||||
run: npm install
|
||||
|
||||
- name: Generate Version
|
||||
working-directory: packages/webpack
|
||||
run: |
|
||||
echo NPM_VERSION=$(node -e "console.log(require('./package.json').version);")-$NPM_TAG-$(date +"%m-%d-%Y")-$GITHUB_RUN_ID >> $GITHUB_ENV
|
||||
|
||||
- name: Bump Version
|
||||
working-directory: packages/webpack
|
||||
run: npm version $NPM_VERSION
|
||||
|
||||
- name: Build @nativescript/webpack
|
||||
run: npx nx run webpack:build
|
||||
|
||||
- name: Publish @nativescript/webpack
|
||||
working-directory: dist/packages
|
||||
env:
|
||||
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
|
||||
run: |
|
||||
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ../../.npmrc
|
||||
echo "Publishing @nativescript/webpack@$NPM_VERSION to NPM with tag $NPM_TAG..."
|
||||
npm publish nativescript-webpack.tgz --tag $NPM_TAG --dry-run
|
||||
Reference in New Issue
Block a user