-
-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (52 loc) · 1.64 KB
/
publish.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
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Publish
on:
workflow_dispatch:
inputs:
version_type:
type: choice
description: Version type
default: minor
options:
- major
- minor
- patch
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: refs/heads/main
- name: Setup git repo
run: |
git config user.name $GITHUB_ACTOR
git config user.email gh-actions-${GITHUB_ACTOR}@github.com
git remote add gh-origin https://${GITHUB_ACTOR}:${{secrets.PUBLISH_GITHUB_TOKEN}}@github.com/${GITHUB_REPOSITORY}.git
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install
- name: Version
run: |
npm version ${{ github.event.inputs.version_type }} --force -m "Version %s"
- name: Push release commit and tag to GitHub
id: push
run: |
git push gh-origin HEAD:main --tags
echo "tag-name=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT
- name: Publish to npm
run: |
npm set //registry.npmjs.org/:_authToken ${{ secrets.NODE_AUTH_TOKEN }}
npm publish
- uses: actions/upload-artifact@v3
if: failure()
with:
name: npm-logs
path: ~/.npm/_logs
- name: Create a Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.push.outputs.tag-name }}
generate_release_notes: true
files: |
./dist/**