fix(Select): set isScrollable internally (#10320) #1843
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 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
ci: | |
name: CI | |
uses: ./.github/workflows/main.yml | |
docs: | |
name: Documentation | |
uses: ./.github/workflows/documentation.yml | |
secrets: inherit | |
deploy: | |
name: Deploy release | |
runs-on: ubuntu-latest | |
needs: [ci, docs] | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# Needs to be an admin token to get around branch protection. | |
GH_TOKEN: ${{ secrets.GH_TOKEN_REDALLEN }} | |
GH_PR_TOKEN: ${{ secrets.GH_PR_TOKEN }} | |
steps: | |
- name: Check out project | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Needs to be an admin token to get around branch protection. | |
token: ${{ secrets.GH_TOKEN_REDALLEN }} | |
# Fetches all tags from 'origin' and updates local tags, only fetches the latest commit. | |
- name: Fetch tags | |
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | |
- name: Set up and build project | |
uses: ./.github/actions/setup-project | |
with: | |
skip-build-cache: true | |
- name: Deploy to NPM and Github | |
run: .github/release.sh |