This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
Update README.md (#208) #914
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: Changesets | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
branches: | |
- master | |
env: | |
CI: true | |
PNPM_CACHE_FOLDER: .pnpm-store | |
jobs: | |
# Update package versions from changesets. | |
version: | |
timeout-minutes: 14 | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' && github.repository == 'verdaccio/generator-verdaccio-plugin' | |
steps: | |
- name: checkout code repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: setup node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: 'https://registry.npmjs.org' | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.REGISTRY_AUTH_TOKEN }} | |
- name: install pnpm | |
run: npm i -g pnpm@latest-8 | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.REGISTRY_AUTH_TOKEN }} | |
- name: setup pnpm config | |
run: pnpm config set store-dir $PNPM_CACHE_FOLDER | |
- name: setup pnpm config registry | |
run: pnpm config set registry https://registry.npmjs.org | |
- name: install dependencies | |
run: pnpm install | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.REGISTRY_AUTH_TOKEN }} | |
- name: build | |
run: pnpm build | |
- name: create versions | |
uses: changesets/action@v1 | |
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.REGISTRY_AUTH_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.REGISTRY_AUTH_TOKEN }} | |
NPM_CONFIG_REGISTRY: https://registry.npmjs.org |