mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
f82a32ae34
Bumps [actions/checkout](https://github.com/actions/checkout) from v2.3.1 to v2.3.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.3.1...2036a08e25fa78bbd946711a407b529a0a1204bf) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
32 lines
712 B
YAML
32 lines
712 B
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.2
|
|
- name: Use Node (latest)
|
|
uses: actions/setup-node@v2.1.1
|
|
with:
|
|
node_version: 12
|
|
- name: Install
|
|
run: yarn install --frozen-lockfile
|
|
- name: Build
|
|
run: yarn code:build
|
|
- name: Lint
|
|
run: yarn lint
|
|
- name: Publish
|
|
run: sh scripts/publish.sh
|
|
env:
|
|
REGISTRY_AUTH_TOKEN: ${{ secrets.REGISTRY_AUTH_TOKEN }}
|
|
REGISTRY_URL: registry.npmjs.org
|
|
- name: Create release notes
|
|
run: sh scripts/github-release.sh
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|