-
Notifications
You must be signed in to change notification settings - Fork 53
109 lines (109 loc) · 2.89 KB
/
publish-stable.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: Publish stable
on:
workflow_dispatch:
inputs:
slicemachine/adapter-next:
default: decline
type: choice
options:
- major
- minor
- patch
- decline
slicemachine/adapter-nuxt:
default: decline
type: choice
options:
- major
- minor
- patch
- decline
slicemachine/adapter-nuxt2:
default: decline
type: choice
options:
- major
- minor
- patch
- decline
slicemachine/adapter-sveltekit:
default: decline
type: choice
options:
- major
- minor
- patch
- decline
slicemachine/init:
default: decline
type: choice
options:
- major
- minor
- patch
- decline
slicemachine/manager:
default: decline
type: choice
options:
- major
- minor
- patch
- decline
slicemachine/plugin-kit:
default: decline
type: choice
options:
- major
- minor
- patch
- decline
slice-machine-ui:
default: decline
type: choice
options:
- major
- minor
- patch
- decline
start-slicemachine:
default: decline
type: choice
options:
- major
- minor
- patch
- decline
jobs:
publish-stable:
if: ${{ startsWith(github.ref, 'refs/heads/main')}}
name: Publish stable
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Use Node.js
uses: ./.github/actions/setup-node
- name: Install dependencies
run: yarn install
- name: Build essentials
uses: ./.github/actions/build-essential
- name: Run publish script
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
git config user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
git config user.name "${GITHUB_ACTOR}"
inputs=$(echo '${{ toJSON(github.event.inputs) }}' | jq -c)
package_names=$(echo $inputs | jq -r 'keys | .[]')
specifiers=""
for package_name in $package_names; do
package_release_type=$(echo $inputs | jq -r --arg k "$package_name" '.[$k]')
if [[ $package_name == "slicemachine/"* && $package_release_type != "decline" ]]; then
specifiers+="@$package_name:$package_release_type "
elif [ $package_release_type != "decline" ]; then
specifiers+="$package_name:$package_release_type "
fi
done
yarn publish stable $specifiers