mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 12:17:37 +08:00
5f304a4940
Co-authored-by: Renovate Bot <bot@renovateapp.com>
79 lines
2.1 KiB
YAML
79 lines
2.1 KiB
YAML
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@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '16'
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v2
|
|
with:
|
|
version: latest
|
|
|
|
- name: Cache ~/.pnpm-store
|
|
uses: actions/cache@v3
|
|
env:
|
|
cache-name: cache-pnpm-store
|
|
with:
|
|
path: ~/.pnpm-store
|
|
key: ${{ runner.os }}-publish-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-publish-${{ env.cache-name }}-
|
|
${{ runner.os }}-publish-
|
|
${{ runner.os }}-
|
|
|
|
- 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
|
|
if: ${{ github.repository_owner == 'element-plus' }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '16'
|
|
registry-url: https://registry.npmjs.com/
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v2
|
|
with:
|
|
version: latest
|
|
|
|
- name: Get current date
|
|
id: date
|
|
run: echo "::set-output name=date::$(date +'%Y%m%d')"
|
|
|
|
- name: Get git head
|
|
run: echo "GIT_HEAD=${GITHUB_SHA}" >> $GITHUB_ENV
|
|
- name: Gen npmrc
|
|
run: echo "//registry.npmjs.com/:_authToken=${{ secrets.NPM_PUBLISH_TOKEN }}" >> ./.npmrc
|
|
|
|
- name: Set Nightly
|
|
run: sh ./scripts/nightly.sh
|
|
|
|
- name: Build & publish
|
|
run: sh ./scripts/publish.sh
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}
|
|
TAG_VERSION: 0.0.${{ steps.date.outputs.date }}
|
|
GIT_HEAD: ${{env.GIT_HEAD}}
|
|
REGISTRY: https://registry.npmjs.com/
|