mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
46ef5f0532
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
---
|
|
name: static data
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# twice peer week
|
|
- cron: '0 0 * * 1,4'
|
|
# for now, scheduled, we can enable on push master but not make much sense now
|
|
# push:
|
|
# branches:
|
|
# - master
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
jobs:
|
|
prepare:
|
|
name: Run script
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
|
|
with:
|
|
persist-credentials: false
|
|
fetch-depth: 0
|
|
- uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
|
|
with:
|
|
node-version: 18.x
|
|
- name: install pnpm
|
|
run: sudo npm i pnpm@latest-8 -g
|
|
- name: install dependencies
|
|
run: pnpm install
|
|
- name: Build Translations percentage
|
|
run: pnpm --filter @verdaccio/crowdin-translations build
|
|
- name: update contributors
|
|
run: pnpm run contributors
|
|
env:
|
|
TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: update addson data
|
|
run: pnpm script:addson
|
|
- name: update translations
|
|
run: pnpm run translations
|
|
env:
|
|
TOKEN: ${{ secrets.CROWDIN_VERDACCIO_API_KEY }}
|
|
- name: format
|
|
run: pnpm format
|
|
- name: Commit & Push changes
|
|
uses: actions-js/push@156f2b10c3aa000c44dbe75ea7018f32ae999772 # tag=v1.4
|
|
with:
|
|
github_token: ${{ secrets.TOKEN_VERDACCIOBOT_GITHUB }}
|
|
message: "chore: updated static data"
|
|
branch: master
|
|
author_email: verdaccio.npm@gmail.com
|
|
author_name: verdacciobot
|