Skip to content

Commit

Permalink
Merge pull request #425 from bcgov/bugfix/combine-if-statements-in-pu…
Browse files Browse the repository at this point in the history
…blish-npm-workflow

Fix React components library npm publish workflow logic
  • Loading branch information
ty2k authored Jul 24, 2024
2 parents d14f2a5 + 7587a85 commit 9247381
Showing 1 changed file with 44 additions and 45 deletions.
89 changes: 44 additions & 45 deletions .github/workflows/publish_react_component_library.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,58 +10,57 @@ on:
jobs:
publish-react-component-library:
name: Public @bcgov/design-system-react-components
# Only run on merge, not close without merge
if: github.event.pull_request.merged == true
# Only run in bcgov/design-system repo, not forks
if: github.repository == 'bcgov/design-system'
# Only run on merge, not close without merge AND
# only run in bcgov/design-system repo, not forks.
if: ${{ github.event.pull_request.merged == true && github.repository == 'bcgov/design-system' }}
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Checkout code
uses: actions/checkout@v3

- name: Read .nvmrc
run: echo "GITHUB_NVMRC_VERSION=$(cat .nvmrc)" >> $GITHUB_ENV
working-directory: ./packages/react-components
- name: Read .nvmrc
run: echo "GITHUB_NVMRC_VERSION=$(cat .nvmrc)" >> $GITHUB_ENV
working-directory: ./packages/react-components

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.GITHUB_NVMRC_VERSION }}
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.GITHUB_NVMRC_VERSION }}

- name: Install dependencies
run: npm install
working-directory: ./packages/react-components
- name: Install dependencies
run: npm install
working-directory: ./packages/react-components

- name: Install jq
run: sudo apt-get install -y jq
- name: Install jq
run: sudo apt-get install -y jq

# Use `jq` to change the package.json version to look like:
#
# <version in package.json>-pr<PR # that caused the workflow run>
#
# So package.json version v1.2.3 with a run caused by merging PR #456 to
# `main` causes the version of the package on npm to look like:
#
# 1.2.3-pr456
#
# This is to ensure that it's easy to map an npm version to a particular PR.
#
- name: Update version in package.json
run: |
PR_NUMBER=${{ github.event.pull_request.number }}
CURRENT_VERSION=$(jq -r '.version' package.json)
NEW_VERSION="${CURRENT_VERSION}-pr${PR_NUMBER}"
jq --arg new_version "$NEW_VERSION" '.version = $new_version' package.json > tmp.json && mv tmp.json package.json
shell: bash
working-directory: ./packages/react-components
# Use `jq` to change the package.json version to look like:
#
# <version in package.json>-pr<PR # that caused the workflow run>
#
# So package.json version v1.2.3 with a run caused by merging PR #456 to
# `main` causes the version of the package on npm to look like:
#
# 1.2.3-pr456
#
# This is to ensure that it's easy to map an npm version to a particular PR.
#
- name: Update version in package.json
run: |
PR_NUMBER=${{ github.event.pull_request.number }}
CURRENT_VERSION=$(jq -r '.version' package.json)
NEW_VERSION="${CURRENT_VERSION}-pr${PR_NUMBER}"
jq --arg new_version "$NEW_VERSION" '.version = $new_version' package.json > tmp.json && mv tmp.json package.json
shell: bash
working-directory: ./packages/react-components

- name: Build with Rollup script
run: npm run rollup
working-directory: ./packages/react-components
- name: Build with Rollup script
run: npm run rollup
working-directory: ./packages/react-components

- name: Publish to npm
run: npm publish --tag next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
working-directory: ./packages/react-components
- name: Publish to npm
run: npm publish --tag next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
working-directory: ./packages/react-components

0 comments on commit 9247381

Please sign in to comment.