-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
34 lines (34 loc) · 931 Bytes
/
npm-publish.yml
File metadata and controls
34 lines (34 loc) · 931 Bytes
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
name: npm-publish
on:
push:
branches:
- master # Change this to your default branch
permissions:
id-token: write
contents: write
jobs:
npm-publish:
name: npm-publish
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
- name: Set up Node.js
uses: actions/setup-node@master
with:
node-version: 24
registry-url: 'https://registry.npmjs.org'
- id: publish
uses: JS-DevTools/npm-publish@v4
- name: Create Release
if: ${{ steps.publish.outputs.type }}
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.publish.outputs.version }}
release_name: Release ${{ steps.publish.outputs.version }}
body: ${{ steps.publish.outputs.version }}
draft: false
prerelease: false