From 95ff3ab0fc085c542cf0b22894a21560e88ebc92 Mon Sep 17 00:00:00 2001 From: Duncan Kolba Date: Fri, 12 Aug 2022 14:00:05 +0200 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=8E=A1=20npm=20publish=20CI=20WIP?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/03-publish-packages.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/03-publish-packages.yml b/.github/workflows/03-publish-packages.yml index 298e5d7fd1..ea861e52cc 100644 --- a/.github/workflows/03-publish-packages.yml +++ b/.github/workflows/03-publish-packages.yml @@ -146,17 +146,17 @@ jobs: if: ${{ inputs.release == 'true' && env.DBUI_THEME == 'default' }} run: npm publish --dry-run --workspace=@db-ui/${{ env.DBUI_WORKSPACE }} - - name: 📰 Publish experimental (NEXT) default Package to Registry + - name: 📰 Publish experimental (NEXT) default Package to Registry (dry run) if: ${{ inputs.prerelease == 'true' && env.DBUI_THEME == 'default' }} - run: npm publish --tag next --workspace=@db-ui/${{ env.DBUI_WORKSPACE }} + run: npm publish --tag next --dry-run --workspace=@db-ui/${{ env.DBUI_WORKSPACE }} - name: 📰 Publish stable (LATEST) enterprise Package to Registry (dry run) if: ${{ inputs.release == 'true' && env.DBUI_THEME == 'enterprise' }} run: npm publish --dry-run --workspace=@db-ui/${{ env.DBUI_WORKSPACE }}-${{ env.DBUI_THEME }} - - name: 📰 Publish experimental (NEXT) enterprise Package to Registry + - name: 📰 Publish experimental (NEXT) enterprise Package to Registry (dry run) if: ${{ inputs.prerelease == 'true' && env.DBUI_THEME == 'enterprise' }} - run: npm publish --tag next --workspace=@db-ui/${{ env.DBUI_WORKSPACE }}-${{ env.DBUI_THEME }} + run: npm publish --tag next --dry-run --workspace=@db-ui/${{ env.DBUI_WORKSPACE }}-${{ env.DBUI_THEME }} - name: Pack tarball default if: ${{ env.DBUI_THEME == 'default' }}