mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
59 lines
1.3 KiB
YAML
59 lines
1.3 KiB
YAML
name: Changesets
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
push:
|
|
branches:
|
|
- 5.x
|
|
pull_request:
|
|
branches:
|
|
- 5.
|
|
|
|
env:
|
|
CI: true
|
|
PNPM_CACHE_FOLDER: .pnpm-store
|
|
|
|
jobs:
|
|
# Update package versions from changesets.
|
|
version:
|
|
timeout-minutes: 15
|
|
runs-on: ubuntu-latest
|
|
if: github.ref == 'refs/heads/5.x' && github.repository == 'verdaccio/verdaccio'
|
|
steps:
|
|
- name: checkout code repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: setup node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 14
|
|
registry-url: https://registry.verdaccio.org
|
|
|
|
- name: install pnpm
|
|
run: npm i pnpm@latest -g
|
|
|
|
- name: setup pnpm config
|
|
run: pnpm config set store-dir $PNPM_CACHE_FOLDER
|
|
|
|
- name: install dependencies
|
|
run: pnpm install
|
|
|
|
- name: build
|
|
run: pnpm build
|
|
|
|
- name: create versions
|
|
uses: changesets/action@master
|
|
with:
|
|
version: pnpm ci:version
|
|
commit: 'chore: update versions'
|
|
title: 'chore: update versions'
|
|
publish: pnpm ci:publish
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
NPM_TOKEN: ${{ secrets.VERDACCIO_TOKEN }}
|
|
NODE_AUTH_TOKEN: ${{ secrets.VERDACCIO_TOKEN }}
|