mermaid/.github/workflows/release-publish.yml

45 lines
1.1 KiB
YAML
Raw Normal View History

2019-11-30 23:23:09 +01:00
name: Publish release
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
2022-09-04 21:30:47 +02:00
- uses: actions/checkout@v3
- uses: fregante/setup-git-user@v1
2019-11-30 23:23:09 +01:00
2022-09-04 21:30:47 +02:00
- name: Setup Node.js
uses: actions/setup-node@v3
with:
2022-10-10 14:13:50 +02:00
node-version: 18.x
2022-09-04 21:30:47 +02:00
- name: Install Yarn
run: npm i yarn --global
2019-11-30 23:23:09 +01:00
2022-09-04 21:30:47 +02:00
- name: Install Json
run: npm i json --global
2019-11-30 23:23:09 +01:00
2022-09-04 21:30:47 +02:00
- name: Install Packages
run: yarn install --frozen-lockfile
2019-11-30 23:23:09 +01:00
2022-09-04 21:30:47 +02:00
- 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
2019-11-30 23:23:09 +01:00
2022-09-04 21:30:47 +02:00
- name: Publish
run: |
npm set //registry.npmjs.org/:_authToken $NPM_TOKEN
npm publish
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}