-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d3ef08d
commit c437b6d
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Release npm package | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version-bump: | ||
description: The scale of the version bump required for semver compatibility | ||
required: true | ||
default: patch | ||
type: choice | ||
options: | ||
- patch | ||
- minor | ||
- major | ||
concurrency: release | ||
jobs: | ||
release: | ||
name: "Release & Publish" | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./app | ||
steps: | ||
- name: 🧮 Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
||
- name: 🔧 Set up node environment | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: "yarn" | ||
|
||
- name: 🛠️ Setup | ||
# When running `install` it also calls the `prepare` step which generates | ||
# a build | ||
run: yarn install --pure-lockfile | ||
|
||
- name: 👊 Bump version | ||
run: | | ||
yarn version --no-git-tag-version --${{ github.event.inputs.version-bump }} | ||
git config --global user.name 'ElementRobot' | ||
git config --global user.email '[email protected]' | ||
git commit -am "${{ github.event.inputs.version-bump }} version bump" | ||
git push | ||
- name: 🚀 Publish to npm | ||
id: npm-publish | ||
uses: JS-DevTools/npm-publish@v1 | ||
with: | ||
token: ${{ secrets.NPM_TOKEN }} | ||
access: public | ||
|
||
- name: 🧬 Create release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: v${{ steps.npm-publish.outputs.version }} | ||
release_name: Release ${{ steps.npm-publish.outputs.version }} | ||
body: ${{ steps.npm-publish.outputs.version }} Release | ||
draft: false | ||
prerelease: false |