-
Notifications
You must be signed in to change notification settings - Fork 4
62 lines (55 loc) · 1.39 KB
/
publish.yml
File metadata and controls
62 lines (55 loc) · 1.39 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
57
58
59
60
61
62
name: Release & Publish
run-name: "release ${{ inputs.bump }}"
on:
workflow_dispatch:
inputs:
bump:
description: "Bump major, minor, or patch"
required: true
type: choice
options:
- patch
- minor
- major
preview:
description: "Preview mode (skip release and publish)"
required: false
type: boolean
default: false
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
outputs:
version: ${{ steps.release.outputs.version }}
tag: ${{ steps.release.outputs.tag }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GH_PAT }}
- uses: ./.github/actions/setup
- name: Release
id: release
run: bun run scripts/release.ts
env:
BUMP: ${{ inputs.bump }}
PREVIEW: ${{ inputs.preview }}
GH_TOKEN: ${{ secrets.GH_PAT }}
publish:
needs: release
if: ${{ !inputs.preview }}
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ needs.release.outputs.tag }}
- uses: ./.github/actions/setup
- name: Publish to NPM
run: bun run scripts/publish.ts
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}