update field mapping to include label (#2609) #1760
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | |
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages | |
name: Publish Packages | |
on: | |
push: | |
branches: | |
- main | |
- hotfix/** | |
jobs: | |
build-and-publish: | |
env: | |
HUSKY: 0 | |
NX_DISABLE_DB: true | |
if: startsWith(github.event.head_commit.message, 'Publish') == true | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: 'https://registry.npmjs.org' | |
cache: yarn | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: NODE_ENV=production yarn build | |
- name: Fetch Latest Tags | |
run: | | |
git fetch --tags | |
- name: Set NPM Token | |
run: | | |
npm set '//registry.npmjs.org/:_authToken' ${{ secrets.NPM_PUBLISH_TOKEN }} | |
npm whoami | |
- name: Publish | |
run: | | |
yarn lerna publish from-package --yes --loglevel=verbose --dist-tag latest | |
release: | |
needs: build-and-publish # comment when testing locally with https://github.com/nektos/act | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled to ensure the commit history for the repository is available to the action | |
fetch-tags: true | |
- name: Setup git credentials | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
- name: Generate Tags | |
id: get-release-tag | |
run: ./scripts/generate-release-tags.sh | |
- name: Create Github Release | |
id: create-github-release | |
uses: actions/github-script@v7 | |
env: | |
RELEASE_TAG: ${{ steps.get-release-tag.outputs.release-tag }} | |
with: | |
script: | | |
const script = require('./scripts/github-action/create-github-release.js') | |
await script({github, context, core, exec}) | |
# When hotfix is merged back to main, we tag all the packages that were changed in the hotfix commit. | |
tag-hotfix: | |
if: startsWith(github.event.head_commit.message, 'Hotfix:') == true && github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Configure git | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
- name: Generate Package Specific Tags | |
id: get-release-tag | |
run: ./scripts/generate-package-tags.sh |