mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
745753c4b7
Bumps [actions-js/push](https://github.com/actions-js/push) from 1.3 to 1.4.
- [Release notes](https://github.com/actions-js/push/releases)
- [Commits](a52398fac8...156f2b10c3
)
---
updated-dependencies:
- dependency-name: actions-js/push
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
58 lines
1.8 KiB
YAML
58 lines
1.8 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@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
|
|
with:
|
|
persist-credentials: false
|
|
fetch-depth: 0
|
|
- uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # tag=v3
|
|
with:
|
|
node-version: 18.x
|
|
- name: install pnpm
|
|
run: sudo npm i pnpm@latest-6 -g
|
|
- name: set store
|
|
run: |
|
|
mkdir ~/.pnpm-store
|
|
pnpm config set store-dir ~/.pnpm-store
|
|
- name: setup pnpm config registry
|
|
run: pnpm config set registry https://registry.verdaccio.org
|
|
- name: install dependencies
|
|
run: pnpm install
|
|
- name: Build Translations percentage
|
|
run: pnpm build --filter "@verdaccio/crowdin-translations"
|
|
- name: update contributors
|
|
run: pnpm run contributors
|
|
env:
|
|
TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
- 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
|