Skip to content

1.3.2 - partial compilationMode, bump ng to v15 #8

1.3.2 - partial compilationMode, bump ng to v15

1.3.2 - partial compilationMode, bump ng to v15 #8

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Setup Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
registry-url: 'https://registry.npmjs.org'
- run: npm install
name: NPM Install
- run: npm run prepublish
name: Build & Prepublish
- run: cd dist/ng-magnizoom && npm publish --ignore-scripts
name: Publish
env:
CI: true
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}