Publish to NPM registry (nightly) #181
This file contains hidden or 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: Publish to NPM registry (nightly) | |
| on: | |
| schedule: | |
| # GMT+8 00:00 | |
| - cron: '0 16 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.repository_owner == 'element-plus' }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm i --frozen-lockfile | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Test | |
| run: pnpm test | |
| publish: | |
| needs: test | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| if: ${{ github.repository_owner == 'element-plus' }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Get current date | |
| id: date | |
| run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT | |
| - name: Get git head | |
| run: echo "GIT_HEAD=${GITHUB_SHA}" >> $GITHUB_ENV | |
| - name: Update npm | |
| run: npm install npm@11.6.1 -g | |
| - name: Set Nightly | |
| run: sh ./scripts/nightly.sh | |
| - name: Build & publish | |
| run: sh ./scripts/publish.sh | |
| env: | |
| TAG_VERSION: 0.0.${{ steps.date.outputs.date }} | |
| GIT_HEAD: ${{env.GIT_HEAD}} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NODE_OPTIONS: --max-old-space-size=4096 |