forked from nandorojo/galeria
-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (68 loc) · 2.17 KB
/
publish.yml
File metadata and controls
71 lines (68 loc) · 2.17 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
63
64
65
66
67
68
69
70
71
name: Publish Package to npmjs
on:
workflow_dispatch:
inputs:
release-type:
description: "Release type"
required: true
default: "alpha"
type: choice
options:
- alpha
- beta
- latest
- patch
- minor
- major
permissions:
id-token: write
contents: write
jobs:
publish:
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
- name: Install npm 11.5.1+ (required for trusted publishing)
run: npm install -g npm@latest
- name: Configure git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- run: yarn install --immutable
- name: Release (alpha)
if: ${{ github.event.inputs.release-type == 'alpha' }}
run: yarn release-it --preRelease=alpha --npm.tag=alpha --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Release (beta)
if: ${{ github.event.inputs.release-type == 'beta' }}
run: yarn release-it --preRelease=beta --npm.tag=beta --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Release (latest)
if: ${{ github.event.inputs.release-type == 'latest' }}
run: yarn release-it --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Release (patch)
if: ${{ github.event.inputs.release-type == 'patch' }}
run: yarn release-it patch --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Release (minor)
if: ${{ github.event.inputs.release-type == 'minor' }}
run: yarn release-it minor --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Release (major)
if: ${{ github.event.inputs.release-type == 'major' }}
run: yarn release-it major --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}