From c7070f38468e1d05213156cfb02f01a1c7a0352c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=CC=81=20Moreira?= Date: Mon, 23 Oct 2023 18:13:51 +0100 Subject: [PATCH] chore: disable automatic releases --- .github/workflows/release.yml | 93 ++++++++++++++++------------------- 1 file changed, 43 insertions(+), 50 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4dbcb9f..59c5e83 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,50 +1,43 @@ -name: Publish to npm on new tag - -on: - # push: - # tags: - # - '*' - push: - branches: - - "main" - pull_request: - branches: - - main - -jobs: - publish: - runs-on: self-hosted - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Extract version - id: extract_version - uses: Saionaro/extract-package-version@v1.2.1 - - - 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 }} \ No newline at end of file +# 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/extract-package-version@v1.2.1 + +# - 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 }} \ No newline at end of file