Skip to content

chore: disable automatic releases #7

chore: disable automatic releases

chore: disable automatic releases #7

Workflow file for this run

# name: Publish to npm on new tag
# on:
# push:
# tags:
# - '*'
# jobs:
# publish:
# runs-on: self-hosted
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Extract version
# id: extract_version
# uses: Saionaro/[email protected]
# - name: Setup Node.js
# uses: actions/setup-node@v3
# with:
# node-version: 18
# check-latest: true
# cache: yarn
# scope: '@abmf'
# - name: Install dependencies
# if: steps.yarn-cache.outputs.cache-hit != 'true'
# run: |
# yarn install --frozen-lockfile
# shell: bash
# - name: Print version
# run: echo ${{ steps.extract_version.outputs.version }}
# - name: Build
# run: yarn build
# - name: Publish to npm
# run: |
# echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" >> .npmrc
# yarn exec lerna publish --force-publish --access public
# env:
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}