From 107d46feae524d56a6c049614bc62715499ad959 Mon Sep 17 00:00:00 2001 From: mbwhite Date: Tue, 12 Dec 2023 11:45:29 +0000 Subject: [PATCH] feat: publish under @ibm namespace Signed-off-by: mbwhite --- .github/workflows/release.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 54f2299..2fd0772 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,22 +9,22 @@ permissions: contents: write jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - uses: actions/checkout@v2 - - name: Use Node.js 20 - uses: actions/setup-node@v1 - with: - node-version: 20.x - registry-url: 'https://registry.npmjs.org' - - run: npm ci - - run: npm run build - - run: npm publish - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Use Node.js 20 + uses: actions/setup-node@v1 + with: + node-version: 20.x + registry-url: 'https://registry.npmjs.org' + - run: npm ci + - run: npm run build + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # - name: Release