-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (38 loc) · 1.16 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Publish to npm registry
on:
workflow_dispatch:
inputs:
version:
description: "version | patch | minor | major"
required: true
default: "patch"
jobs:
publish:
environment: release
runs-on: ubuntu-latest
name: 'Bump version and publish'
env:
VERSION: ${{ github.event.inputs.version }}
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install packages
run: npm install
env:
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
- name: version and publish
run: |
git stash
git config user.name $GITHUB_ACTOR
git config user.email gh-actions-${GITHUB_ACTOR}@github.com
git remote add gh-origin https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm version $VERSION -m "Version %s"
npm publish
git push gh-origin $GITHUB_REF --tags