mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
61add32bff
* avoid crowdin step is mandatory * make it fail * split step * split step * try again * try again * restore key * add comment * improve wording * test something * test something * restore key
70 lines
1.9 KiB
YAML
70 lines
1.9 KiB
YAML
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/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.npmjs.org'
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.REGISTRY_AUTH_TOKEN }}
|
|
|
|
- name: install pnpm
|
|
run: npm i pnpm@6.10.3 -g
|
|
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: crowdin download
|
|
env:
|
|
CROWDIN_VERDACCIO_PROJECT_ID: ${{ secrets.CROWDIN_VERDACCIO_PROJECT_ID }}
|
|
CROWDIN_VERDACCIO_API_KEY: ${{ secrets.CROWDIN_VERDACCIO_API_KEY }}
|
|
CONTEXT: production
|
|
run: pnpm crowdin:download
|
|
- name: build
|
|
run: pnpm build
|
|
|
|
- name: create versions
|
|
uses: verdaccio/changeset-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.REGISTRY_AUTH_TOKEN }}
|
|
NODE_AUTH_TOKEN: ${{ secrets.REGISTRY_AUTH_TOKEN }}
|
|
NPM_CONFIG_REGISTRY: https://registry.npmjs.org
|