Skip to content

chore: new logo

chore: new logo #74

Workflow file for this run

name: Release Workflow
env:
NX_BRANCH: ${{ github.event.number }}
NX_RUN_GROUP: ${{ github.run_id }}
on:
push:
branches:
- main
- beta
- alpha
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Use Node.js 12.x
uses: actions/[email protected]
with:
node-version: 12.x
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci --cache ~/.npm --prefer-offline
- name: release
run: npx nx release ng-morph
env:
CI: true
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.TINKOFF_BOT_PAT }}