From 3c780288c04f985fec229019ac1e405a1193314c Mon Sep 17 00:00:00 2001 From: Tobias Kohr Date: Thu, 10 Aug 2023 16:13:56 +0200 Subject: [PATCH] ci(lib): comment lib workflow for now --- .github/workflows/ci.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 313e6930..2802fa92 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,18 +22,18 @@ jobs: cache: 'npm' - run: npm ci - - name: Build library and increment version tag (only on merge) - if: github.event_name != 'pull_request' - shell: bash - run: | - npm run build:lib:prod - git config user.name github-actions - git config user.email github-actions@github.com - git add . - git commit -m "chore(lib): npm run build:lib:prod" - npm version patch - git push - git push --tags + # - name: Build library and increment version tag (only on merge) + # if: github.event_name != 'pull_request' + # shell: bash + # run: | + # npm run build:lib:prod + # git config user.name github-actions + # git config user.email github-actions@github.com + # git add . + # git commit -m "chore(lib): npm run build:lib:prod" + # npm version patch + # git push + # git push --tags - name: Get branch name (merge) if: github.event_name != 'pull_request'