Skip to content

Commit

Permalink
ci(github): fix release automation - add all npm registry auth tokens
Browse files Browse the repository at this point in the history
1. The node-setup github action was only adding the npmjs.org registry creds.
2. Now it also adds the github package registry's credentials so that the lerna
publish script can succeed.

Signed-off-by: Peter Somogyvari <[email protected]>
  • Loading branch information
petermetz committed Sep 30, 2024
1 parent c5bbb33 commit d28f077
Showing 1 changed file with 55 additions and 24 deletions.
79 changes: 55 additions & 24 deletions .github/workflows/all-nodejs-packages-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,38 +5,69 @@ env:

on:
push:
branches:
- "*"
tags:
- v*

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:

# //registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}
# registry=https://registry.npmjs.org/
# always-auth=true
#
# //npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}
# @petermetz:registry=https://npm.pkg.github.com/
# always-auth=true

jobs:
build-and-publish-packages:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- run: git fetch --unshallow --prune
- uses: actions/[email protected]
with:
always-auth: true
node-version: ${{ env.NODEJS_VERSION }}
registry-url: 'https://registry.npmjs.org'
- name: ./tools/ci.sh
run: ./tools/ci.sh
env:
DEV_BUILD_DISABLED: false
FULL_BUILD_DISABLED: false
JEST_TEST_RUNNER_DISABLED: true
TAPE_TEST_RUNNER_DISABLED: true
- name: lerna-publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "hyperledger-ghci"
npm whoami
yarn lerna publish from-git --yes --loglevel=debug --ignore-scripts
- uses: actions/[email protected]
- run: git fetch --unshallow --prune
- uses: actions/[email protected]
with:
always-auth: true
node-version: ${{ env.NODEJS_VERSION }}
registry-url: "https://registry.npmjs.org/"

- run: echo "FIRST REGISTRY ADDED"
- run: cat /home/runner/work/_temp/.npmrc

- run: echo "ADDING SECOND REGISTRY"

- uses: actions/[email protected]
with:
always-auth: true
node-version: ${{ env.NODEJS_VERSION }}
registry-url: "https://npm.pkg.github.com/"

- run: echo "ADDED SECOND REGISTRY"
- run: cat /home/runner/work/_temp/.npmrc

- run: sed -i 's/npm.pkg.github.com\/:_authToken=${NODE_AUTH_TOKEN}/npm.pkg.github.com\/:_authToken=${GITHUB_TOKEN}/' /home/runner/work/_temp/.npmrc

- run: echo "UPDATED ENV VAR IN .NPMRC FOR GITHUB"
- run: cat /home/runner/work/_temp/.npmrc

# - name: ./tools/ci.sh
# run: ./tools/ci.sh
# env:
# DEV_BUILD_DISABLED: false
# FULL_BUILD_DISABLED: false
# JEST_TEST_RUNNER_DISABLED: true
# TAPE_TEST_RUNNER_DISABLED: true
# - name: lerna-publish
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: |
# git config --global user.email "[email protected]"
# git config --global user.name "hyperledger-ghci"
# npm whoami
# yarn lerna publish from-git --yes --loglevel=debug --ignore-scripts

0 comments on commit d28f077

Please sign in to comment.