mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
cd94bb3f5b
Updates the requirements on [actions/checkout](https://github.com/actions/checkout) to permit the latest version.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](5a4ac9002d
)
Signed-off-by: dependabot[bot] <support@github.com>
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
name: Publish release
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
- uses: fregante/setup-git-user@v1
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 10.x
|
|
- name: Install Yarn
|
|
run: npm i yarn --global
|
|
|
|
- name: Install Json
|
|
run: npm i json --global
|
|
|
|
- name: Install Packages
|
|
run: yarn install --frozen-lockfile
|
|
|
|
- name: Prepare release
|
|
run: |
|
|
VERSION=${GITHUB_REF:10}
|
|
echo "Preparing release $VERSION"
|
|
git checkout -t origin/release/$VERSION
|
|
npm version --no-git-tag-version --allow-same-version $VERSION
|
|
git add package.json
|
|
git commit -m "Bump version $VERSION"
|
|
git checkout -t origin/master
|
|
git merge -m "Release $VERSION" --no-ff release/$VERSION
|
|
git push --no-verify
|
|
|
|
- name: Publish
|
|
run: |
|
|
npm set //registry.npmjs.org/:_authToken $NPM_TOKEN
|
|
npm publish
|
|
env:
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|