ci: add workflows for different packages

This commit is contained in:
Igor Randjelovic
2020-12-28 14:37:01 +01:00
parent 875dc138a8
commit 69b7fc377a
3 changed files with 86 additions and 0 deletions

View File

@@ -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
View 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

View 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