Refactor calculating highlight index logic for Combobox and Select #172
Workflow file for this run
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
name: Release @dev tag to npm | |
on: | |
pull_request: | |
types: [labeled] | |
jobs: | |
release: | |
if: ${{ github.event.label.name == 'release dev tag' }} | |
runs-on: ubuntu-22.04 | |
env: | |
HUSKY: 0 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup PNPM | |
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 | |
with: | |
run_install: | | |
- args: [--frozen-lockfile] | |
- name: Check for changeset | |
run: pnpm exec changeset status --since origin/main | |
- name: Create .npmrc | |
run: | | |
cat << EOF > "$HOME/.npmrc" | |
//registry.npmjs.org/:_authToken=$NPM_TOKEN | |
EOF | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Release on @dev tag in npm | |
run: pnpm publish:ci-dev | |
- name: Get new package version | |
run: | | |
VERSION=$(cat package.json | jq -r '.version') | |
echo "VERSION=$VERSION" >> "$GITHUB_ENV" | |
- name: Add installation instructions PR comment | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | |
env: | |
VERSION: ${{ env.VERSION }} | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
Released snapshot build with `@dev` tag in npm with version: `${{ env.VERSION }}`. | |
Install it with: | |
```shell | |
pnpm add @saleor/macaw-ui@${{ env.VERSION }} | |
``` |