-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (52 loc) · 1.48 KB
/
Copy pathrelease.yml
File metadata and controls
56 lines (52 loc) · 1.48 KB
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
53
54
55
56
name: Release
on:
push:
tags:
- 'v*'
workflow_dispatch:
inputs:
version:
description: 'Version to release (e.g. 1.0.1)'
required: true
type: string
permissions:
id-token: write
contents: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm test
- name: Set version from workflow input (patch release)
if: github.event_name == 'workflow_dispatch'
run: |
current=$(node -p "require('./package.json').version")
if [ "$current" != "${{ inputs.version }}" ]; then
npm version ${{ inputs.version }} --no-git-tag-version
fi
- run: npm publish --access public --provenance
github-release:
needs: publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Determine version
id: version
run: |
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
echo "tag=v${{ inputs.version }}" >> "$GITHUB_OUTPUT"
else
echo "tag=${{ github.ref_name }}" >> "$GITHUB_OUTPUT"
fi
- uses: softprops/action-gh-release@v3
with:
tag_name: ${{ steps.version.outputs.tag }}
generate_release_notes: true