Skip to content

Patch branch distance #28

Patch branch distance

Patch branch distance #28

Workflow file for this run

name: publish-release
on:
pull_request:
types: [closed]
branches:
- main
jobs:
publish-release:
name: Release - Publish
# Only run when merging a release branch
if: >
(github.event.pull_request.merged == true) &&
startsWith(github.head_ref, 'release/')
runs-on: ubuntu-latest
steps:
# Cloning
- uses: actions/checkout@v3
with:
token: ${{ secrets.SYNTEST_CI }}
fetch-depth: 0
# Setup, Caching, and .npmrc file to publish to npm
- name: Use latest Node.js LTS version
uses: actions/setup-node@v3
with:
node-version: lts/*
# NPM Cache using all package-lock files as hash
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
# NPM Publishing settings
registry-url: 'https://registry.npmjs.org'
always-auth: true
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_REGISTRY_TOKEN }}
# Configure git user
- name: Config git user
run: |
git config --global user.name 'SynTest CI'
git config --global user.email 'info@syntest.org'
# Dependencies
- name: Core - Install Dependencies
run: npm ci
# Building
- name: Core - Build
run: npm run build
# Publishing
- name: "Core - Publish"
env:
GH_TOKEN: ${{ secrets.SYNTEST_CI }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_REGISTRY_TOKEN }}
run: npx lerna publish from-git --yes --loglevel silly